大约有 700 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0097 秒)
...摄像机。 ![](img/1.png) 当我们在写3D游戏的代码时,要先在舞台中添加3D场景,添加3D摄像机。再写其它代码。 摄像机在3D场景中,可以是唯一的,也可以放置多台摄像机,比如在3D场景中出现的弹窗换装面板,或者某些对战游戏的...
来源: Laya2.0_文档 发布时间: 20210714
...herited from AnimationBase.stage Defined in laya/display/Sprite.ts:1599 对舞台 stage 的引用。 Returns Stage staticCache get staticCache(): boolean set staticCache(value: boolean): void Inherited from AnimationBase.staticCache Defined in laya/display/Sprite.ts:380 设置cacheAs为非空时此...
来源: Laya3.0_api 发布时间: 20231102
...ree.width) / 2; tree.y = (Laya.stage.height - tree.height) / 2; //加载到舞台 Laya.stage.addChild(tree); } } } import laya.ui.Box; import laya.ui.Clip; import laya.ui.Label; // IDE中生成的此类对应的json对象,在此作为参考,对应树形结构中的单元格Item类 // {"child": [...
来源: Laya2.0_文档 发布时间: 20210715
...herited from AnimationBase.stage Defined in laya/display/Sprite.ts:1599 对舞台 stage 的引用。 Returns Stage staticCache get staticCache(): boolean set staticCache(value: boolean): void Inherited from AnimationBase.staticCache Defined in laya/display/Sprite.ts:380 设置cacheAs为非空时此...
来源: Laya3.0_api 发布时间: 20231102
...默认值为0。以角度为单位。Sprite stage : Stage[read-only] 对舞台 stage 的引用。Sprite staticCache : Boolean 是否静态缓存此对象的当前帧的最终属性。为 true 时,子对象变化时不会自动更新缓存,但是可以通过调用 reCache 方法手动刷新。 ...
来源: laya_api 发布时间: 20170929
...tatic loopCount loopCount: number = 0 Defined in laya/utils/Stat.ts:104 主舞台 Stage 渲染次数计数。 Static memoryShow memoryShow: Array<StatUIParams> = [Stat.GPUMemory, Stat.TextureMemeory, Stat.RenderTextureMemory, Stat.BufferMemory] Defined in laya/utils/Stat.ts:65 Static renderSho...
来源: Laya3.0_api 发布时间: 20231115
...执行一次 onEnable 组件被启用后执行,比如节点被添加到舞台后 onStart 第一次执行onUpdate之前执行,只会执行一次 onUpdate 每帧更新时执行,尽量不要在这里写大循环逻辑或者使用getComponent方法 onLateUpdate 每帧更新时执行,在onUpdate...
来源: Laya3.0_文档 发布时间: 20241014
...Ease.elasticOut,null,i*1000); } } //创建单个字符文本,并加载到舞台 private createLetter(char:string):Laya.Text{ var letter:Laya.Text = new Laya.Text(); letter.text = char; letter.color = "#ffffff"; letter.font = "Impact"; letter.fontSize = 180; this.owner.addChild(letter); return lett...
来源: Laya3.0_文档 发布时间: 20241014
...herited from AnimationBase.stage Defined in laya/display/Sprite.ts:1599 对舞台 stage 的引用。 Returns Stage staticCache get staticCache(): boolean set staticCache(value: boolean): void Inherited from AnimationBase.staticCache Defined in laya/display/Sprite.ts:380 设置cacheAs为非空时此...
来源: Laya3.0_api 发布时间: 20231102
...,创建的Scene 3D场景和Scene 2D容器或元素可以同时加载到舞台上。 下面我们先来了解一个3D场景的参数都有哪些,为了让一个3D场景达到一个好的效果,都需要考虑的因素。我们通过创建3D-RPG项目来参考,如图1-2所示 (图1-2) 创...
来源: Laya3.0_文档 发布时间: 20241014