0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【PlayCanvas】SkyBoxをスクリプトから回転させる

Last updated at Posted at 2021-05-31

PlayCanvasで設定したSkyboxをスクリプトから回転させる方法です。

const RotateSkybox = pc.createScript('RotateSkybox');

RotateSkybox.prototype.update = function(dt) {
    const a = this.app.scene.skyboxRotation
    const b = new pc.Quat().setFromEulerAngles(0.0 , -0.01, 0.0);
    const r = new pc.Quat();
    r.mul2(a, b);
    this.app.scene.skyboxRotation = r;
};

実行結果

毎フレーム-0.01ずつ回転している
output.gif

実行URL

Sceneについて(APIリファレンス)

skyboxRotationについて(APIリファレンス)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?