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

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

101. 代码无法编译 [ 76%]

...法编译了  也没看到那里出错 这个是什么原因 报错 The 'this' keyword is equivalent to 'undefined' at the top level of an ES module, and has been rewritten   附件 : --> 2020-07-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容...

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

102. 小游戏环境下 声音的缓存机制导致更换声音文件失败 [ 75%]

...             url = URL.formatURL(url);             this.url = url;             this.readyUrl = url;             if (MiniSound._audioCache[this.readyUrl]) {                 this.event(/*laya.events.Event.COMPLETE*/"complete");      ...

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

103. 1.5版本:3D Camera无法使用? [ 75%]

...请: 与内容相关的链接 提交 1 个回复 183*****755 赞同来自: this.scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene; this.camera = (this.scene.addChild(new Laya.Camera(0, 1, 1000))) as Laya.BaseCamera; this.camera.transform.translate(new Vector3(0, 0, 500)); 这样用即可...

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

104. js进度,进度,js场景进度效果 [ 75%]

...ame = 'Game'; window[className] = (function(original) { function Class() { this.arr = [ "res/atlas/lucky8.json", "res/atlas/lucky8/lewinlineicons.json", "res/atlas/lucky8/setting.json", "res/atlas/lucky8/setView.json", "res/atlas/lucky8/kj.json", "res/atlas/lucky8/mh.json", "res/atlas/lucky8/light.j...

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

105. JS里面定义一个函数,无法使用Laya.Handler.creat回调 [ 75%]

...义? export default class LocalTxt{ constructor() { LocalTxt.Instance = this; } onTxtLoad(aText){ console.info("dfasd"); } initTxt(){ Laya.loader.load("res/localtxt.txt",Laya.Handler.create(this, onTxtLoad),null,Loader.TEXT); } } 2019-01-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...

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

106. 为unity导出的场景种的模型添加碰撞器失败 [ 75%]

...为myCar的模型后,为该模型添加碰撞器失败。 onComplete(){ this.scene1 = Laya.loader.getRes("3D/LayaScene_map/Conventional/map.ls"); Laya.stage.addChild(this.scene1); this.myCar = this.scene1.getChildByName("myCar"); var scale = new Laya.Vector3(2, 2, 2); this.myCar.transform.localSca...

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

107. LayaBox进阶之UI管理类 [ 75%]

...aya.Sprite; private scene: GameScence; private uiList:any; constructor() { this.mainContent = new Laya.Sprite(); this.uiList = ; } }mainContent 为默认添加到的层级, GameScence 为UI管理器默认场景 uiList放所有加载进来的场景 第一步实现 打开界面 openWindow public ope...

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

108. 设置frame会使打包VIVO Tween动画抖动闪烁 [ 75%]

...VIVO Tween动画抖动闪烁 public DoFlash ():void { Laya.timer.once(700, this, this.FlashTween); } private FlashTween ():void { this.hand.scale(2, 2); this.hand.alpha = 1 Tween.to(this.hand, {scaleX:1, scaleY:1, alpha:1}, 300, null, Laya.Handler.create(this, this.DoFlash)); } 循环Tween 缩放一...

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

109. 导出微信小游戏 微信的api前面会自动加上文件夹名? view.wx.getSystemInfoSync() 怎么解决自动加"this. " 或者有时自动加上各种文件夹名? [ 75%]

...动加上文件夹名? view.wx.getSystemInfoSync() 怎么解决自动加"this. " 或者有时自动加上各种文件夹名? 导出微信小游戏 微信的api前面会自动加上文件夹名? view.wx.getSystemInfoSync() 怎么解决自动加"this. " 或者有时自动加上各种文件夹名?this....

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

110. 属性无法获取 [ 75%]

...自: 170*****650 这是因为你函数执行时执行域发生了改变,this指向变成了window。你有两种方案处理这个问题: 第一个: joy.callBackFun = onMyRole.bind(this);   第二个: joy.callBackFun = Handler.create(this,onMyRole); 2017-06-11 1 0 分享 微博 QZONE 微信...

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