【PlayCanvas】SkyBoxをスクリプトから回転させる
2988 ワード
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;
};
実行結果
実行URL
Sceneについて(APIリファレンス)
skyboxRotationについて(APIリファレンス)
Author And Source
この問題について(【PlayCanvas】SkyBoxをスクリプトから回転させる), 我々は、より多くの情報をここで見つけました https://qiita.com/yushimatenjin/items/60b6367962062f923dfb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .