• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,130 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0054 秒)

921. 2.0)js按照官方遮罩写的程序,无法正常执行, 请问怎么回事,代码见内。 [ 52%]

.../data.head_img:头像的url路径 head_img.loadImage(data.head_img, Laya.Handler.create(head_img, function () {              this.height = this.width = 77;        var cMask = new Laya.Sprite();//创建遮罩对象        var r = 38.5; //遮罩圆形半径              cMask.g...

来源: Laya_社区 发布时间: 20181119

922. IDE发布之后,在res下并没有任何资源,这是什么情况啊? [ 52%]

...。改成 Laya.loader.load("res/atlas/Resources.json",laya.utils.Handler.create(this,this.onReader),null,laya.net.Loader.ATLAS);就好了 Buzhihew • 2017-01-11 15:50 @Monica:.......我.....总之谢谢啊啊啊 Monica • 2017-01-11 15:51 @Buzhihew:不客气(*^__^*) ...... wuquanan • 2...

来源: Laya_社区 发布时间: 20170111

923. Uncaught unknown animationClip version. [ 52%]

...来自: Laya.Scene3D.load("LayaScene_scene1/Conventional/scene1.ls", Laya.Handler.create(this, function (s: Laya.Scene3D): void { var scene = s; Laya.stage.addChild(scene);         }));   加载代码 2019-03-13 0 0 分享 微博 QZONE 微信 Zong 赞同来自: 断点调试显示clip.versio...

来源: Laya_社区 发布时间: 20190313

924. 关于loader加载Loader.JSON的一些问题 [ 52%]

...ON资源时,发现一个奇怪的问题: Laya.loader.load(resUrl, Laya.Handler.create(this, function (res) { //解析题目 log(res);   //放置方块 }), null, Laya.Loader.JSON); }   代码运行到这老是报错,报错原因是有不认识的字符,我想了下,resUrl指向的是本...

来源: Laya_社区 发布时间: 20200311

925. Button属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 52%]

...下代码:** ```java package { import laya.ui.Button; import laya.utils.Handler; import laya.webgl.WebGL; public class ComponentDemo { //按钮资源路径 private var skin:String = "./res/img/btn_test.png"; public function ComponentDemo() { //初始化引擎,设置宽高并开启WebGL渲染模...

来源: Laya2.0_文档 发布时间: 20210715

926. load方法加载cdn上面的图片资源的时候直接报了跨域不同源的问题,怎么破? [ 52%]

...e.log('Gzdaze='); console.log(Gzdaze); Laya.loader.load(Gzdaze.dialogList, Handler.create(this, this.startLoaded)); 代码是这样的 报错 Access to Image at 'http://caifu-1251177394.file.myqcloud.com/beta/book/bookLaya/img/progressBar$bar.png' from origin 'http://bookportal.com' has been blocked...

来源: Laya_社区 发布时间: 20180208

927. list中的item类中的button注册事件不响应 是怎么回事呢 ?可以帮帮我解答下吗 [ 52%]

...一覺盜兲喨 赞同来自: 这里的按钮,可以用   this.btn.clickHandler = laya.utils.Handler.create(this,this.方法,["你要传的参数"],false); 2018-08-28 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Try everything___ ...

来源: Laya_社区 发布时间: 20180828

928. 新人求教!!! [ 52%]

...添加到舞台      Laya.loader.load([this.monkey1,this.monkey2],Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{    //创建一个实例    this.img = new Laya.Sprite();    //添加到舞台    Laya.stage.addChild(this.img);    //显示初始化绘制的图...

来源: Laya_社区 发布时间: 20180226

929. Cannot read property 'props' of undefined [ 52%]

...2.0,使用就挂……   Laya.Scene3D.load("LayaScene_Map/Map.ls",Laya.Handler.create(null,function(scene){             //加载完成获取到了Scene3d             Laya.stage.addChild(scene);         })); 附件 : --> LayaScene_Map.zip 2020-07-07 添加评论 免...

来源: Laya_社区 发布时间: 20200707

930. 被遮罩的对象的子显示对象再添加遮罩,子显示对象的遮罩显示不正确 [ 52%]

....img.mask = imgMask; Laya.Tween.to(this.img, {x:100}, 10000).update = Laya.Handler.create(this, this.updateMsk, null, false); } private updateMsk():void { this.img.mask.graphics.clear(true); this.img.mask.graphics.drawRect(100 - this.img.x, 0, this.img.width, 300, "#ffffff"); } 附件 : --> LayaTest...

来源: Laya_社区 发布时间: 20190722