1.修复弃用旧特性的代码;

This commit is contained in:
zhangquan 2025-07-30 11:31:35 +08:00
parent 470d2b2b11
commit 7a861756c6
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export default class SkyBoxOnGround {
* @type {Boolean}
* @default true
*/
this.show = defaultValue(options.show, true);
this.show = options.show ?? true;
this._command = new DrawCommand({
modelMatrix: Matrix4.clone(Matrix4.IDENTITY),