大约有 29 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0025 秒)
... at process._tickCallback (internal/process/next_tick.js:61:11) at Function.Module.runMain (internal/modules/cjs/loader.js:745:11) at startup (internal/bootstrap/node.js:266:19) at bootstrapNodeJSCore (internal/bootstrap/node.js:596:3) exit:1 请问这个怎么解决。百度...
来源: Laya_社区 发布时间: 20200513
js的问题 function debounceFunc(env, func) { var flag = true; //剩余形参 return function (...args) { if (flag) { func.apply(env, args); flag = false; setTimeout(() => flag = true, 1000); } } } 按钮点击事件调用这个方法可以使他传入一...
来源: Laya_社区 发布时间: 20191206
...1 个回复 kezhiyu 赞同来自: 182*****278 小程序 不支持 eval 和 Function 这里是说,如果有需要eval 的地方,通常都可以通过把 要执行的字符串 直接写入js文件, 来达到调用的效果 比如 假设我有全局变量 ls, 我 eval('ls.g.x=1') 其实是...
来源: Laya_社区 发布时间: 20180419
...该包围盒的中心Constructor DetailOrientedBoundBox()Constructorpublic function OrientedBoundBox(extents:Vector3, transformation:Matrix4x4) 创建一个 OrientedBoundBox 实例。 Parameters extents:Vector3 — 每个轴长度的一半 transformation:Matrix4x4 — 包围盒的位置和缩放, ...
来源: Laya2.0_api 发布时间: 20190513
...回复 layabox小高 赞同来自: 您好,可以参照下这个方法。 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 rejecte...
来源: Laya_社区 发布时间: 20221104
... at process._tickCallback (internal/process/next_tick.js:61:11) at Function.Module.runMain (internal/modules/cjs/loader.js:757:11) at startup (internal/bootstrap/node.js:283:19) at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3) ——————————————...
来源: Laya_社区 发布时间: 20200509
...neScript extends Script3D { //用于表现的方法 public var showMsgFunc:Function; public function SceneScript() { } //对应unity添加的AnimationEvent的动画事件函数,名字是可以对应上的 public function ShowMsg():void { trace("ShowMsg"); showMsgFunc && showMsgFunc(); } } ``` 在...
来源: Laya2.0_文档 发布时间: 20210715
UTF-8 ArrayBuffer和字符串之间的转换 [code]function uintToString(uintArray) { var encodedString = String.fromCharCode.apply(null, uintArray), decodedString = decodeURIComponent(escape(atob(encodedString))); return decodedString; }这种方法不行! [/code] 2019-04-12 添加评论 免费...
来源: Laya_社区 发布时间: 20190412
...内容相关的链接 提交 1 个回复 贾如初见 赞同来自: [code]function uintToString(uintArray) { var encodedString = String.fromCharCode.apply(null, uintArray), decodedString = decodeURIComponent(escape(atob(encodedString))); return decodedString;} JS可以通过这个方法解析 但是...
来源: Laya_社区 发布时间: 20181203
...Scene_AnimationEvent/Conventional/layaScene.ls", Laya.Handler.create(this, function(scene) { Laya.stage.addChild(scene); //获取cube对象 var cube = scene.getChildByName("Cube"); //添加组件(脚本) var _script = cube.addComponent(SceneScript); //label用于显示 var _lab = new Laya.Label(); _...
来源: Laya2.0_文档 发布时间: 20210715