大约有 411 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
Laya_社区(129) Laya3.0_api(69) Laya2.0_api(64) laya_api(59) Laya2.0_文档(46) Laya3.0_文档(25) Laya_示例(12) Laya2.0_示例(7)
...粒子文件加载完成后再去调整 缩放 var part:Sprite3D = scene.addChild(Sprite3D.load("part.lh")) as Sprite3D; part.once(Event.HIERARCHY_LOADED, this, function():void{ part.transform.localScale = new Vector3(3, 3, 3); }); 2017-03-16 0 0 分享 微博 QZONE 微信 为什么被...
来源: Laya_社区 发布时间: 20170316
...howApe() { // 方法1:使用loadImage var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); // 方法2:使用drawTexture Laya.loader.load("https://s2.d2scdn.com/2017/12/ ... ot%3B, Handler.create(this, function() { var t = Laya.loader.getRes("https://s2.d...
来源: Laya_社区 发布时间: 20171220
...Sprite(); rect.graphics.drawRect(-100, -100, 200, 200, "gray"); Laya.stage.addChild(rect); var rect1 = new Sprite(); rect1.graphics.drawRect(Laya.stage.width / 3 * 2 , Laya.stage.height / 3 * 2 - 65, 100, 100, "blue"); // rect1.graphics.drawRect(Laya.stage.width / 2 , Laya.stage.height / 2, 100, 100...
来源: Laya_社区 发布时间: 20170206
...某个值后,mask出bug 如图所示,在GameUI设置缩放后,并且addChild到sp1的红色块数量为50时,会出现黑块(红色块为10时不会出现);GameUI不设置缩放也不会出现这个问题。 附件 : --> testpro.zip 2020-02-22 添加评论 免费帖 --> 分享 微博 Q...
来源: Laya_社区 发布时间: 20200222
... private onLoaded(): void { this.tMap.mapSprite().removeSelf(); this.owner.addChild(this.tMap.mapSprite()); } //地图加载完成的回调 private completeHandler(e: any = null): void { this.onLoaded(); } } 编译运行代码,效果如图3-3所示,说明地图已创建成功。 (图3-3) 3.3...
来源: Laya3.0_文档 发布时间: 20230303
...e.width >> 1, Laya.stage.height >> 1); Laya.stage.addChild(txt); Laya.Tween.to(txt, { scaleX: 2, scaleY: 2 }, 5000); 5秒钟把文本放大2倍,感觉是 fontSize在不平滑的增大,显得比较卡,有抖动 目前要达到的效果是...
来源: Laya_社区 发布时间: 20200410
...e(){ //创建场景 let scene = Laya.stage.addChild(new Laya.Scene3D()); //创建相机 let camera = scene.addChild(new Laya.Camera(0, 0.1, 100)); //设置相机的名称 camera.name = "camera"; ...
来源: Laya_社区 发布时间: 20190531
...点击热区(hitState)四个状态。也因此SimpleButton允许通过addChild方法将按钮图片资源等其他显示对象添加到其中显示。教程(layabox官网开发者中心Flash差异规则文档)提供的示例项目利用了这个特性在JS下显示按钮对象。 如果...
来源: Laya_社区 发布时间: 20151126
...是效果是这样的 : 代码 : var point = new Sprite(); this.addChild(point); point.graphics.drawCircle(88, 86, 40, 'transparent'); var tx = new Sprite(); tx.loadImage(PATH + 'tx.jpg'); tx.scale(0.3,0.3); this.addChild(tx); tx.mask = point; 2017-09-28 0 2 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20170928
...is.img = []; this.init(); } Class.prototype.init = function() { Laya.stage.addChild(this); this.bg(); Laya.timer.frameLoop(1, this, this.loop); }; Class.prototype.bg = function() { for (var i = 0; i < 2; i++) { this.img[i] = new Laya.Image('background.png'); this.addChild(this.img[i]); } this.img...
来源: Laya_社区 发布时间: 20170619