大约有 2,728 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0075 秒)
Laya_社区(2214) Laya2.0_文档(123) Laya3.0_api(106) Laya_示例(84) Laya2.0_api(57) Laya2.0_示例(55) laya_api(53) Laya3.0_文档(36)
... // 绘制遮罩区,含透明度,可见游戏背景 var maskArea: Laya.Sprite = new Laya.Sprite(); maskArea.alpha = 0.5; maskArea.graphics.drawRect(0, 0, Laya.stage.width, Laya.stage.height, "#000000"); maskArea.mouseThrough = false; Laya.stage.addChild(maskArea); 2018-09-11 添加评论 免费...
来源: Laya_社区 发布时间: 20180911
... 相关问题 使用钢体设置防穿后仍有几率会穿透 如何设置Sprite的宽高和点击区域? 关于同为object层,层级设置无效的问题 摄像机跟随刚体移动,刚体出现抖动。 Laya3D里的material可以设置flat shading么 将list里的scrollBar设置mouseWheelE...
来源: Laya_社区 发布时间: 20170809
...ition = new Laya.Vector3(0,4,10); //载入并显示3D建筑 var map = Laya.Sprite3D.load("LayaScene_test/test.lh"); scene.addChild(map); //map.transform.localPosition = new Laya.Vector3(0,-4,-10); //控制摄像机 camera.addComponent(CameraMoveScript); 2017-05-24 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20170524
...保一个对象能够被回收,需要删除对该对象的所有引用。Sprite提供的`destory()`方法会帮助设置内部引用为null。 例如,以下代码确保对象能够被作为垃圾回收: 1. `//创建一个Sprite实例` 2. `var sp = new Laya.Sprite();` 3. `//将sp内部引用设...
来源: Laya2.0_文档 发布时间: 20210715
...过这个拖尾的同学吗?这个应该怎样使用呢? new Laya.TrailSprite3D() new Laya.TrailMaterial() 2018-07-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 这个类是给unit...
来源: Laya_社区 发布时间: 20180709
...帮助, JS如何调用经过转换的FLASH游戏里的方法? 分享:Sprite 转换成3D贴图(Texture2D)的方法,如果有更好的方法,请告诉我。 load方法的progress回调进的次数太少了。是我哪里设置有问题么 对象池的使用方法是不是先new一个类然...
来源: Laya_社区 发布时间: 20170827
...:Assets.zip 导出资源:LayaScene_Model_1001.zip 加载代码 Laya.Sprite3D.load("res/LayaScene_Model_1001/Conventional/Model_1001.lh", Laya.Handler.create(null, (sprite:Laya.Sprite3D) => { this.mScene.addChild(sprite); sprite.transform.translate(new Laya.Vector3(-0.3, 0, 0)); })); 报...
来源: Laya_社区 发布时间: 20200107
...sform: Transform3D; onStart(): void { this.transform = (this.owner as Laya.Sprite3D).transform; this.CurrentAngles = new Vector3(-this.transform.rotationEuler.x, this.transform.rotationEuler.y, 0); this.targetAngles = new Vector3(-this.transform.rotationEuler.x, this.transform.rotationEuler.y, 0); t...
来源: Laya_社区 发布时间: 20170714
...意来袭 加载到舞台的3D模型不显示贴图 关于遍历产生的sprite的点击事件,急,大神帮看哈 unity中的模型导出后在laya中显示不正常 循环依赖不能运行 Circular dependency: 从unity导出的场景透贴和模型烘焙的灯光不显示,请问有知道是...
来源: Laya_社区 发布时间: 20201105
...super){ function BackGround(){ BackGround.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("war/background.png"); this.addChild(this.bg1); } Laya.class(BackGround,"BackGround",_super); return BackGround; })(Laya.Sprite);报错 "TypeError: this.addChild is not a function at BackGrou...
来源: Laya_社区 发布时间: 20181003