大约有 423 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0059 秒)
Laya3.0_api(155) Laya2.0_api(89) Laya_社区(72) Laya3.0_文档(53) Laya2.0_文档(31) laya_api(22) Laya2.0_示例(1)
... Public Properties PropertyDefined By active : Boolean 获取自身是否激活。 Sprite3D activeInHierarchy : Boolean[read-only] 获取在场景中是否激活。 Sprite3D componentsCount : int[read-only] 获得组件的数量。 Sprite3D destroyed : Boolean[只读]是否已经销毁。对象...
来源: laya_api 发布时间: 20170929
... Public Properties PropertyDefined By active : Boolean 获取自身是否激活。 Node activeInHierarchy : Boolean[read-only] 获取在场景中是否激活。 Node alpha : Number透明度,值为0-1,默认值为1,表示不透明。更改alpha值会影响drawcall。Sprite autoAnimation ...
来源: Laya2.0_api 发布时间: 20190513
... Public Properties PropertyDefined By active : Boolean 获取自身是否激活。 Node activeInHierarchy : Boolean[read-only] 获取在场景中是否激活。 Node alpha : Number透明度,值为0-1,默认值为1,表示不透明。更改alpha值会影响drawcall。Sprite anchorX : Number...
来源: Laya2.0_api 发布时间: 20190513
... Public Properties PropertyDefined By active : Boolean 获取自身是否激活。 Node activeInHierarchy : Boolean[read-only] 获取在场景中是否激活。 Node align : String 表示文本的水平显示方式。 取值: "left": 居左对齐显示。 "center": 居中对齐显示。 ...
来源: Laya2.0_api 发布时间: 20190513
...on }) public uiBtn: Laya.Button; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.uiBtn.on(Laya.Event.CLICK, this, () => { //点击后,打开Msg场景 Laya.Scene.open("Msg.ls", false, {...
来源: Laya3.0_文档 发布时间: 20241014
...aya.stage.width / 2; Laya.stage.addChild(this.text); } } //激活启动类 new Main(); class MonkeyScript extends Laya.Script3D{ constructor(){ super(); this.scene = null; this.text = null; this.camera = null; ...
来源: Laya_社区 发布时间: 20190531
...取唯一标识ID。 Component isActive : Boolean[read-only] 获取是否激活。 PhysicsComponent isKinematic : Boolean 获取是否为运动物体,如果为true仅可通过transform属性移动物体,而非其他力相关属性。 Rigidbody3D isSingleton : Boolean[read-only] 获取是否...
来源: Laya2.0_api 发布时间: 20190513
... Ignore Not Active Game Objects 导出时忽略在unity场景中未激活的节点 Optimize Game Objects 导出时从unity场景中第一级子节点起拍平树形结构,删除所有无用或者未激活节点,可最大程度减少精灵数量 ...
来源: Laya_社区 发布时间: 20170428
...yRenderer.mesh = SkyBox.instance; skyRenderer.material = skyboxMaterial; //激活场景中的子节点 (_scene.getChildByName('Scenes').getChildByName('HeightMap') as MeshSprite3D).active = false; (_scene.getChildByName('Scenes').getChildByName('Area') as MeshSprite3D).active = false; //使用纹理...
来源: Laya2.0_文档 发布时间: 20210715
...cene3D }) scene3d: Laya.Scene3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { //小游戏加载分包 Laya.loader.loadPackage("sub1", this.printProgress).then(() => { Laya.loader.load("sub...
来源: Laya3.0_文档 发布时间: 20241014