大约有 3 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0023 秒)
...MouseDown和onMouseUp为例,在自定义的组件脚本“Script.ts”中加入以下代码: const { regClass, property } = Laya; @regClass() export class Script extends Laya.Script { /** * 鼠标按下时执行 */ onMouseDown(evt: Laya.Event): void { console.log("onMouseDown"); } /** * 鼠标...
来源: Laya3.0_文档 发布时间: 20241014
...辑。 例如,在开发者创建项目时会自动生成一个Main.ts,加入下面的代码: // 在引擎初始化前执行自定义逻辑(此方法在Laya.init前调用) Laya.addBeforeInitCallback(() => { console.log("before init"); }); // 在引擎初始化后执行自定义逻辑(此方...
来源: Laya3.0_文档 发布时间: 20241014
...个新场景,使用加载页面,那么就先定义一个脚本代码,加入可能拖入loading场景的Laya.Prefab属性,代码如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Prefa...
来源: Laya3.0_文档 发布时间: 20241014