大约有 845 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0057 秒)
Laya_社区(561) Laya2.0_文档(110) Laya3.0_api(79) Laya3.0_文档(61) Laya_示例(31) Laya2.0_api(2) laya_api(1)
...要通过代码设定Image相关的属性,就需要用到脚本了。在Scene2D的属性设置面板中,增加一个自定义组件脚本。然后,将Image组件拖入到其暴露的属性入口中。下面给出一个示例代码,实现脚本控制Image: const { regClass, property } = Lay...
来源: Laya3.0_文档 发布时间: 20241014
...is.lb_cancel.on(Laya.Event.CLICK, this, () => { // 返回登陆页 Laya.Scene.open("Auth.scene"); }); // 遍历数组添加事件 this._arrInput.forEach((element, index) => { element.on(Laya.Event.FOCUS, this, this._onInputEvent, [element, this._arrLabel[index], Laya.Event.FOCUS]); element.on(...
来源: Laya_社区 发布时间: 20200410
求解:2D项目中加载View,Laya.Scene.load应该如何使用? 如图,在主场景中嵌入一个View,直接运行可以显示,但是在挂载了runtime脚本之后,运行就不显示。 必须手动在View的runtime脚本中加一个this.loadScene("aaa.scene")才能正常显示...
来源: Laya_社区 发布时间: 20190910
...体 ```typescript //创建盒型MeshSprite3D var box: MeshSprite3D = (this.scene.addChild(new MeshSprite3D(PrimitiveMesh.createBox(1, 1, 1)))); //设置材质 var transform: Transform3D = box.transform; var pos: Vector3 = transform.position; pos.setValue(0, 5, 0); transform.position = pos; //创建...
来源: Laya2.0_文档 发布时间: 20210715
...体 ```typescript //创建盒型MeshSprite3D var box: MeshSprite3D = (this.scene.addChild(new MeshSprite3D(PrimitiveMesh.createBox(1, 1, 1)))); //设置材质 var transform: Transform3D = box.transform; var pos: Vector3 = transform.position; pos.setValue(0, 5, 0); transform.position = pos; //创建...
来源: Laya2.0_文档 发布时间: 20210715
如何才能生成scene配套的代码 在demo里有个类TestSceneUI 请问如何才能生成 /**This class is automatically generated by LayaAirIDE, please do not make any modifications. */ package ui.test { import laya.ui.*; import laya.display.*; public class TestSceneUI extends Scene { public ...
来源: Laya_社区 发布时间: 20181024
...有没有方法能够获取“鼠标是否处于按下状态”? laya2的Scene默认是文件模式,不会生成场景类了,此时该如何获得场景内的元素 [分享]Dialog 点击边缘不关闭的 Demo示例 Laya 安卓端 在服务端运行指令layadcc ./ 后进不去,提示 assetI...
来源: Laya_社区 发布时间: 20181216
...录2.png"; let modelCtrl:ModelCtrl =Laya.stage.getChildByName("Scene3D").getComponent(ModelCtrl) as ModelCtrl; if(modelCtrl!=null){ this.uiCtrl.InitLeftUI(modelCtrl.data.result); } if(this.uiCtrl._tagList!=null){ this.uiCtrl._tagList.visible=true; } }else{ this.btn.skin="resource...
来源: Laya_社区 发布时间: 20241014
... //开启统计信息 Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 1000)); camera.transform.translate(new Laya.Vector3(0, 1.5, 4)); camera.transform.rotate(ne...
来源: Laya_社区 发布时间: 20180725
...mat.albedoTexture = videoNode.videoTexture; this.owner.xxx.getChildByName('Scene3D').getChildByName('Plane').getComponent(Laya.MeshRenderer).sharedMaterial = mat; // 上面代码在3D场景中播放则无任何问题,包括微信浏览器,出问题的是在2D场景中在微信浏览器不能播...
来源: Laya_社区 发布时间: 20230825