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

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

601. 使用IDE制作的动画在pc模拟器播放OK在手机端不显示 [ 51%]

...ris/naruto2.ani"); //添加到舞台 var apesCtn = new Laya.Sprite(); Laya.stage.addChild(apesCtn); var _this = this; this.tl.on(this.Event.COMPLETE,this,function(){ _this.tl.stop(); }) console.log(this.tl) this.tl.interval = 1000 / 60; // this.tl.play(); apesCtn.addChild(this.tl); apesCtn.height = ...

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

602. laya.map.TileAniSprite [ 51%]

...读]是否已经销毁。对象销毁后不能再使用。Node displayedInStage : Boolean[read-only] 表示是否在显示列表中显示。Node displayHeight : Number[read-only] 对象的显示高度(以像素为单位)。 Sprite displayWidth : Number[read-only] 对象的显示宽度(以...

来源: Laya2.0_api 发布时间: 20190513

603. 【教程】2.0微信开放数据域展示组件的使用,WXOpenDataViewer,子域,排行榜 [ 51%]

...;)这个方法打开界面,所以只能通过new 导出来的类再add到stage。然后new出来的界面,不能用runtime,所以runtime用在了list里 无名 • 2019-04-04 15:53 没看到子域发布需要选择内嵌模式,已经可以了。再次感谢! ippon • 2019-03-17 21:47 比...

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

604. 在微信小游戏中使用BitmapFont会导致报错. [ 51%]

... //实例UI界面     var testUI: TestUI = new TestUI();     Laya.stage.addChild(testUI); } 附件 : --> src.rar 2018-05-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 RainbowLand 赞同来自: 此为D...

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

605. laya.ui.TextInput_API3.0 [ 51%]

...代码,创建了一个 TextInput 实例。 package { import laya.display.Stage; import laya.ui.TextInput; import laya.utils.Handler; public class TextInput_Example { public function TextInput_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef...

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

606. 阻止点击穿透问题 [ 51%]

...addChild(bg); this.prizeAlertLayer.addChild(Main.items["prizeinfo"]); Laya.stage.addChild(this.prizeAlertLayer);   this.prizeAlertLayer.visible = false; 附件 : --> 2018-06-01 1 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4...

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

607. Laya List给子元素添加事件后,滚动事件被劫持了 [ 51%]

...会滚动不了 txArray.push(list);} storeTxList.array = txArray;   Laya.stage.addChild(storeTxList);     悬赏找大神看问题 export default class StoreItem extends Laya.Box { constructor() { super(); this.size(195, 210); }  } 附件 : --> ListDemo.zip 2019-07-11 添加评论 已悬赏10元...

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

608. 官方文档里的位图字体的制作与使用JS 跑不通 以及 文档的几个问题 [ 51%]

...的字体txt.font = this.mFontName;txt.fontSize = 50;txt.leading = 5;Laya.stage.addChild(txt);} 2018-09-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 hj 赞同来自: 直接写在main.js里也行,自己建...

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

609. laya.ui.ScaleBox [ 50%]

...ct 自适应缩放容器,容器设置大小后,容器大小始终保持stage大小,子内容按照原始最小宽高比缩放 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By active : Boolean 获取自身是否激活。 Node activeInHier...

来源: Laya2.0_api 发布时间: 20190513

610. 关于Graphics中drawPath方法使用arcTo的bug [ 50%]

...出来   尝试了一下,这个参数 let sp = new Laya.Sprite(); Laya.stage.addChild(sp);   var dx = 0; var dy = 0; var x0 = 100 + dx; var y0 = 100 + dy; var x1 = x0 + 100; var y1 = y0; var x2 = x0; var y2 = y0 + 100;   var r = 50; let path = [ ["moveTo", x0, y0], ["arcTo", x1, y1, x2, y2, r],...

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