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

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

661. [BUG]大量调用 graphics.drawCircle 导致错误 [ 70%]

...dom() * 500, Math.random() * 800, 50, "#666666", "#555555", 5); Laya.stage.addChild(Sprite) } 其他: Laya.init(Laya.Browser.width, Laya.Browser.height, Laya.WebGL);//Laya.WebGL Laya.stage.scaleMode = "showall"; Laya.stage.alignH = "center"; Laya.stage.alignV = "center"; Laya.stage.useHDRendering = ...

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

662. laya.ui.Tree_API3.0 [ 70%]

... tree 的宽度。 tree.height = 100;//设置 tree 的高度。 Laya.stage.addChild(tree);//将 tree 添加到显示列表。 } } } import laya.ui.Box; import laya.ui.Clip; import laya.ui.Label; class Item extends Box { public function Item() { this.name = "render"; this.right = 0; this.left = 0; va...

来源: Laya3.0_api 发布时间: 20231115

663. 位图文本怎么做渐变消隐动画? [ 70%]

...t >> 1);         txt.alpha = 0.1;         Laya.stage.addChild(txt);     } 我这测试是可以的 2019-05-15 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Seven 相关问题 文本如何自动换行 骨骼动...

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

664. 怎么实现同一个工程内分包? [ 70%]

...alse); //是否显示帧率 var loginView:LoginView = new LoginVie(); this.addChild(loginView); } } } B、LoginView类是第一个界面,这个类展示如何引入分包文件:package login { import flash.display.Sprite; import flash.events.Event; import home.HomeView; import iflash.method.impo...

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

665. ios15遮罩引起的黑屏在1.x的版本上如何解决 [ 70%]

...ge.width, Laya.stage.height, "#000000"); maskArea.setName("maskArea") mask.addChild(maskArea);   //绘制一个圆形区域,利用叠加模式,从遮罩区域抠出可交互区 highLightArea = new Sprite(); highLightArea.visible = false; //设置叠加模式 highLightArea.blendMode = "destinati...

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

666. 为何对sp的监听事件没有反应呢? [ 70%]

...- xxx.width) / 2; xxx.y = (Laya.stage.height - xxx.height) / 2; Laya.stage.addChild(xxx); xxx.on(Laya.Event.CLICK, this, this.onXXX); private onXXX() {    console.debug("Hello"); } 2017-06-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...

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

667. 二进制图片(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 70%]

...台 var sp:Laya.Sprite = new Laya.Sprite(); sp.loadImage(url); Laya.stage.addChild(sp);//添加到舞台 } private errorHandler(e:Object):void{ } } new GameMain(); ``` 第二种我们可以绘制一个纹理来显示: ```typescript private completeHandler(data:Object):void{ //加载完成返回的...

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

668. 关于.graphics.drawPath的问题 [ 70%]

..."]], {fillStyle:"#ffffff"},{strokeStyle:"#ffffff",lineWidth:5}) Laya.stage.addChild(tt); 附件 : --> 2017-02-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 jifm 赞同来自: 找到原因了,不需要了 201...

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

669. 模拟石头下落过程不明抖动 [ 70%]

...se.linearOut,Laya.Handler.create(this,this.removeball,[ball])); Laya.stage.addChild( ball ); } } public removeball( ball:Laya.Sprite ){ Laya.stage.removeChild(ball); // console.log("rmove ball") } public getObj():Laya.Sprite { for( let i:number = 0 ; i < this.balls.length;i++ ){ if( !this.balls[i...

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

670. 微信关系链:LayaAir引擎针对微信小游戏好友关系链实现方案 [ 70%]

... { //实例UI界面 //var testView:TestView = new TestView(); //Laya.stage.addChild(testView); // //return; Laya.timer.once(3000, this, function():void{ var sprite:Sprite = new Sprite(); sprite.pos(0, 0); var texture:Texture = new Texture(Browser.window.sharedCanvas); texture.bitmap.alwaysChange = t...

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