大约有 85 项符合查询结果, 库内数据总量为 31,722 项。 (搜索耗时: 0.0055 秒)
...到碰撞离开前,自动执行的生命周期虚方法。 | | onTriggerExit | 物理碰撞结束时,自动执行的生命周期虚方法。 | > 以上的方法是发生在每一次碰撞发生的完整生命周期内,例如,从进入到离开为“Enter,Stay,Stay,……,Exit” 我们为游...
来源: Laya2.0_文档 发布时间: 20210715
... console.log(`${data}`); }); _gulp.on('close', (code) => { console.log(`exit:${code}`); }); b)、创建并编写脚本 tools-publish.js#!/usr/bin/env node const program = require('commander'); const { fork } = require('child_process'); const path = require('path'); // 这里的平台名称...
来源: Laya_社区 发布时间: 20201223
...not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) 2016-12-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 在编译的时...
来源: Laya_社区 发布时间: 20161229
....js" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC", "dependencies": { "astar-typescript": "^1.2.5" } } 接下来在我们的代码中可以使用 import AstarFinder 了,示例代码如下: import { AStarFinder } from "astar-typesc...
来源: Laya3.0_文档 发布时间: 20251010
...R! errno 1 npm ERR! electron@1.7.9 postinstall: `node install.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the electron@1.7.9 postinstall script. npm ERR! This is probably not a problem with npm. There is likely additional log ging output above. npm ERR! A complete log of this run can be f...
来源: Laya_社区 发布时间: 20171027
...R_ENTER : String = triggerenter[static] 物理碰撞开始Event TRIGGER_EXIT : String = triggerexit[static] 物理碰撞结束Event TRIGGER_STAY : String = triggerstay[static] 物理碰撞持续Event UNDISPLAY : String = undisplay[static] 定义 undisplay 事件对象的 type 属性值。Ev...
来源: Laya2.0_api 发布时间: 20190513
....b2Vec2(d.x * 100, d.y * 100); bodyB.applyForce(position, F); } } onTriggerExit(colliderB: ColliderBase, colliderA: ColliderBase, contact) { if (colliderA === this.sensorCollider) { let bodyB: RigidBody = colliderB.owner.getComponent(RigidBody); let index = bodyB.getBody().GetUserData().pointer; thi...
来源: Laya2.0_示例 发布时间: 20260303
...GER_ENTER : String = triggerenter[static] 物理碰撞开始Event TRIGGER_EXIT : String = triggerexit[static] 物理碰撞结束Event TRIGGER_STAY : String = triggerstay[static] 物理碰撞持续Event UNDISPLAY : String = undisplay[static] 定义 undisplay 事件对象的 type 属性值。Event...
来源: Laya2.0_api 发布时间: 20190513
...x.tes: JIT profile information will not be recorded: profile file does not exits. I/chatty: uid=10205(com.layabox.test) identical 10 lines W/om.layabox.tes: JIT profile information will not be recorded: profile file does not exits. I/InstantRun: starting instant run server: is main process I/AwareBi...
来源: Laya_社区 发布时间: 20190723
... }); process.stderr.on("data",(data)=>{ console.log(data); }); process.on("exit",(code,signal)=>{ console.log("success"); console.log(code,signal); cb(); }) } //创建一个名称为compile的gulp任务 task("compile", function(){ /** * @ 监听src目录下的所有子目录的所有文件, * @ ...
来源: Laya2.0_文档 发布时间: 20210715