大约有 33 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0032 秒)
LayaAir引擎 atlas-generator 内存占用超过2G;后面的图集都打包不出来 atlas-generator 怎么加内存? 图集一多久导出不了了;没有附件 附件 : --> main__72_0_25.min_.zip 2022-11-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20221124
...可以参照下这个方法。 function __awaiter(thisArg, _arguments, P, generator) { return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](val...
来源: Laya_社区 发布时间: 20221104
...cted function httpStatusHandler(event:HTTPStatusEvent):void { // TODO Auto-generated method stub trace("您已经通过http进行了访问,并且当前的FlashPlayer环境支持获得状态代码!!!") } protected function ioErrorHandler(event:IOErrorEvent):void { // TODO Auto-generated metho...
来源: Laya_社区 发布时间: 20151217
...,在用到async的地方会在编译js代码的时候生成__awaiter和__generator函数,但是laya2.0不会这样子了,直接ts写async会报错。 尝试在index.js文件添加__awaitor和__generator函数,能跑,但是到了微信上上又有其他问题了。 请问laya2.0使用async...
来源: Laya_社区 发布时间: 20181121
...st { regClass } = Laya; import { RuntimeScriptBase } from "./RuntimeScript.generated"; @regClass() export class RuntimeScript extends RuntimeScriptBase { onAwake(): void { //60帧后,图片的透明度变为0.5 Laya.timer.frameOnce(60, this, () => { this.Image.alpha = 0.5; }) } } 1.2 定时重...
来源: Laya3.0_文档 发布时间: 20241014
...node-v8.9.0-linux-x64/lib/node_modules/layacmd/ProjectExportTools/TP/atlas-generator" "/home/sgf_ebuild/LayaAirIDE/packParam.json" Waiting for pics packing execute: "/data/tools/node-v8.9.0-linux-x64/lib/node_modules/layacmd/ProjectExportTools/TP/atlas-generator" "/home/sgf_ebuild/LayaAirIDE/packPar...
来源: Laya_社区 发布时间: 20171211
...sh(p); path.addChild(p); } } private function OnShow():void { // TODO Auto Generated method stub if(pop==null){ pop = new TestDialogUI(); pop.btn_close.clickHandler = new Handler(this,function(){pop.parent.removeChild(pop);}); } this.addChild(pop); } private function StartMove(len:int):void { trace(...
来源: Laya_社区 发布时间: 20171129
...ction StartMove(len:int):void { trace("[TestView.StartMove]") // TODO Auto Generated method stub Laya.timer.loop(100,this,UpdatePath,[len]); } private function UpdatePath(len:int):void { // TODO Auto Generated method stub var show:int = len -1; for(var i=0;i<len;i++){ if(arr[i]){ arr[i].x+= speed...
来源: Laya_社区 发布时间: 20171113
...使用。本篇将引导开发者如何通过第三方工具 Bitmap Font Generator来制作位图字体并在LayaAir引擎中使用。 [TOC] ### 一、下载并安装字体制作工具 下载安装 windows下免费的位图字体制作工具 Bitmap Font Generator。 下载地址:[http://www.angelc...
来源: Laya2.0_文档 发布时间: 20210715
...imeScript.ts之外,在项目工程中看到还多了一个 RuntimeScript.generated.ts。 图2-2展示了RuntimeScript.ts默认生成的代码,其类名RuntimeScript就是创建时的文件名,它在生成时自动继承于RuntimeScriptBase 类。 (图2-2) 图2-3展示了RuntimeScript.gener...
来源: Laya3.0_文档 发布时间: 20241014