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

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

711. 2d粒子旋转时大小也会随着改变 [ 54%]

...Particle2D(setting); sp.pos(200, 200); sp.emitter.start(); sp.play(); Laya.stage.addChild(sp); sp.rotation = 80; }附件中为旋转80、45、0角度时的现象   问题补充: Laya.init(720, 1280);这样就正常了。 Laya.init(720, 1280, laya.webgl.WebGL);这样就出现这个问题,应...

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

712. 照着官方文档写的 Dialog 报错? [ 54%]

...source.prototype.init = function () { this._container = new Sprite(); Laya.stage.addChild(this._container); Laya.loader.load(["../bin/res/ui/progressBar.png", "../bin/res/ui/progressBar$bar.png"], Handler.create(this, this.onPreloaded)); }; LoadResource.prototype.onPreloaded = function () { this.ini...

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

713. 要实现角色模型被建筑模型遮挡后,建筑模型变成半透明,如何实现? [ 54%]

...true; (2)this.camera.clearColor = new Vector4(0, 0, 0, 0); (3)Laya.stage.bgColor = null; 第一句,是让Canvas的WebGL上下文支持透明。 第二句,是在draw渲染时清除的颜色和透明。 第三句,是把Canvas的style背景色清除。 ---------------------  作者:sjt...

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

714. js环境下使用Loader加载图片在Sprite对象的.on函数无效 [ 54%]

...展示界面    Laya.init(scronw, scronh) //设置舞台背景色 Laya.stage.bgColor = '#999999'; //设置适配模式     Laya.stage.scaleMode = "exactfit";     // 无加载失败重试     Laya.loader.retryNum = 0; //加载的数据信息 https://layaair.ldc.layabox.co ... oader var...

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

715. 小游戏子域程序加载到图集后,取图集内资源报错。 [ 54%]

...{ trace("加载成功"); var c:Image = new Image("rank/country.png"); Laya.stage.addChild(c); }  以上是子域项目中加载图集和取资源的代码。代码是参照 https://ask.layabox.com/question/15086 这个帖子的。 图集加载是ok的,但是这样new Image("rank/country.png");...

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

716. layabox打包apk后加载prefab之后使用pool创建prefab找不到create函数 [ 54%]

...Fun('prefab_' + name, obj.create,obj);               Laya.stage.addChild(prefab);             prefab.pos(100,100);         }),null,Laya.Loader.PREFAB); 如上,obj.create打包后在真机找不到此函数。 附件 : --> 2D.zip 2020-04-09 添加评论 免费...

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

717. 分享:LayaAir下Loading进度条的制作(ActionScript 3.0) [ 54%]

...改变时触发 progressBar.changeHandler=new Handler(this,onChange); Laya.stage.addChild(progressBar); } private function onChange(value:Number):void { trace("进度: "+Math.floor(value*100)+"%"); } //游戏资源加载进度函数 private function onProgress(pro:Number):void { trace("加载了总...

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

718. 加载时间轴动画报错 [ 53%]

...Ape));   function showApe(){ this.ani.loadAnimation("TimeLine.ani"); Laya.stage.addChild(this.ani); this.ani.play(); }   运行时报 TypeError:Cannot read property '_create' of null     at Animation._proto.timerLoop(file:///f:/........./bin/libs/laya.core.js:9493:14)     at Animation._proto.p...

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

719. LayaAir引擎AS3与Flash原生AS3的开发差异(ActionScript-简介篇(AS3)-LayaAir引擎简介) [ 53%]

... sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,200,'#FFFF00'); Laya.stage.addChild(sp); var mask:Sprite=new Sprite(); mask.graphics.drawCircle(0,0,50,'#FF0000'); mask.pos(sp.x+100,sp.y+100) sp.mask=mask; ``` ### 2.2 动态遮罩 **原生as3支持,但是不被LayaAir引擎支持的示例:*...

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

720. LayaAir引擎AS3与Flash原生AS3的开发差异(ActionScript-简介篇(AS3)-LayaAir引擎简介) [ 53%]

... sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,200,'#FFFF00'); Laya.stage.addChild(sp); var mask:Sprite=new Sprite(); mask.graphics.drawCircle(0,0,50,'#FF0000'); mask.pos(sp.x+100,sp.y+100) sp.mask=mask; ``` ### 2.2 动态遮罩 **原生as3支持,但是不被LayaAir引擎支持的示例:*...

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