大约有 1,536 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0057 秒)
... // tree.y = (Laya.stage.height - tree.height) / 2; // Laya.stage.addChild(tree); } 附件 : --> 2018-07-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: http://ask.layab...
来源: Laya_社区 发布时间: 20180726
... this.Img.x =0; this.Img.y =0; this.Img.url ="../game/1.png"; Laya.stage.addChild(this.Img); //获取图片初始x y轴坐标 this.ImgX=this.Img.x; this.ImgY =this.Img.y; this.layout(); Laya.stage.on(Laya.Event.RESIZE, this, this.layout); Laya.stage.on(Laya.Event.ADDED, this, this.layout); layout...
来源: Laya_社区 发布时间: 20181123
...ovieClip = new MovieClip(); mc.load(this.SWFPath); mc.pos(0,0); Laya.stage.addChild(mc); } } } new laya.Animation_SWF(); Charles • 2018-01-08 13:51 支持遮罩动画吗?请帮忙看看我这个问题,https://ask.layabox.com/question/10417。转后的swf播放报错。
来源: Laya_社区 发布时间: 20171103
...ics.drawTexture(new Texture(htmlCanvas),0,0); //添加到舞台 Laya.stage.addChild(imgNew); } 需要进行像素级的操作 这样写 sprite显示不出来 应该怎么修改? 2018-04-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20180413
...ya.Handler.create(this,function(scene){ Laya.stage.addChild(scene); })); } } 2020-05-16 添加评论 已悬赏30元 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 5 个回复 Laya_XS 赞同来自: Ace...
来源: Laya_社区 发布时间: 20200516
... var arr = [g1, g2, g3]; var index = 0; var sp: Sprite = new Sprite; stage.addChild(sp); setInterval(function () { sp.graphics = arr[index++] if (index >= arr.length) { index = 0; } }, 1000); 这种方式按照我的理解应该每次切换一个Graphics,但一个Graphics绘制了N次,实际d...
来源: Laya_社区 发布时间: 20170729
...鼠标坐标 img.on(Laya.Event.MOUSE_MOVE,this,this.onmousemove); apesCtn.addChild(img); ........ onmousemove(e) { //console.log("e="+JSON.stringify(e)); for (var property in e) { console.log(property+"="+e[property]); } console.log("========================"); /**这里是运行后,在img上拖...
来源: Laya_社区 发布时间: 20181031
...ght * 0.5; sprite.x = this.width * 0.5; sprite.y = this.height * 0.5; this.addChild(sprite); Laya.Tween.to(sprite, {scaleX:1.5, scaleY:1.5, alpha:0}, 5000); 2018-07-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回...
来源: Laya_社区 发布时间: 20180708
...1754, 0.7341046333312988); let scene: Laya.Scene = new Laya.Scene(); scene.addChild(camera); scene.addScript(SceneScript); Laya.stage.addChild(scene); } } new GameMain(); g02test.zip 2018-02-01 0 0 分享 微博 QZONE 微信 qian 赞同来自: 自己new的摄像机和射线检测误差没有关系 ...
来源: Laya_社区 发布时间: 20180201
...cene/TestScene.ls") as Laya.Scene; // scene.enableLight = true; Laya.stage.addChild(scene); } } new GameMain();工程文件在附件,运行后报错 Uncaught Error: LoaderManager:unknown file(G:/LayaTest/bin/TestScene/TestScene.ls) extension with: ls. at LoaderManager.__proto._create (laya.c...
来源: Laya_社区 发布时间: 20171227