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

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

2051. 怎么清理掉 Sprite3D 相关的缓存资源, 资源destroy后内存还下降、。 [ 67%]

...,内存没下降。   清理方法            override public function destroy(destroyChild:Boolean = true):void {             if(effect3D != null){                 effect3D.destroy();                 effect3D = null;             }         ...

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

2052. 2D物理-复合碰撞器 [ 67%]

... box: Sprite; private var totalBox = 200; private var label: Label; public function Physics_Tumbler() { Laya.Config.isAntialias = true; Laya.init(1200, 700, WebGL); Stat.show(); Physics.enable(); PhysicsDebugDraw.enable(); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTE...

来源: Laya2.0_示例 发布时间: 20241128

2053. 请问一下,怎么将下面这段AS3代码翻译成LayaAir的API [ 67%]

...urce.Texture; import laya.utils.Handler; public class LayaAirDemo { public function LayaAirDemo() { Laya.init(700,600); Laya.loader.load('res/apes/monkey2.png',Handler.create(this,onLoaded)) } private function onLoaded():void { var texture:Texture=Loader.getRes('res/apes/monkey2.png'); var sp:Sprite...

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

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

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

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

2055. layaAir 1.7.10 编译的时候,注释翻译成JS有问题 [ 67%]

...这样的注释 /** *       //注释 *       a.x(n, c); * **/ public function a.x(n,c):void{   } 翻译成JS之后空格被去掉了,就变成了 /** *//注释 * a.x(n, c); **/ public function a.x(n,c):void{ }  这样就导致了注释在“*//注释”这里就结束了。下面的 * a....

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

2056. ViewStack属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 67%]

...viewStack组件的测试页面**/ private var comp:ComponentDemoUI; public function ComponentDemo() { Laya.init(1334,750, WebGL); Laya.stage.scaleMode = "full"; Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("./res/atlas/ui.atlas", Handler.creat...

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

2057. macOS系统运行layaair-cmd resourceVersion报错 [ 67%]

...load (module.js:565:32)     at tryModuleLoad (module.js:505:12)     at Function.Module._load (module.js:497:3)     at Function.Module.runMain (module.js:693:10)   请问这个怎么解决,谢谢。 2018-05-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

2058. Laya 2.2.0 只支持编译 target 为 es6的相关问题 [ 67%]

...小游戏  es6中的 async/await 编译 es6时会被翻译成 yield 和 function*() 的实现方式 yield function*() 导致真机黑屏,开发者工具没问题。 laya2.2.0 只支持 es6 的 target 编译, 如果改为 target 为 es 编译,会出现 Class constructor XXX cannot be invoked w...

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

2059. LAYA IDE 设置语言包路径后卡死 [ 67%]

...把此信息截图给研发商 Uncaught TypeError: text.replace is not a function TypeError: text.replace is not a function     at Input.__proto.parseLines (file:///D:/LayaAirIDE/resources/app/out/vs/layaEditor/h5/laya.js:60001:19)     at Input.__proto.typeset (file:///D:/LayaAirIDE/resources/...

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

2060. 屏幕适配-自动竖屏 [ 67%]

...y.Text; import laya.webgl.WebGL; public class SmartScale_Portrait { public function SmartScale_Portrait() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.sta...

来源: Laya2.0_示例 发布时间: 20241128