大约有 7 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
...solo时,如图5-13: (图5-13) 此时,Attack动画播完会播放Run动画,因为Run动画选了solo。 当没有任何条件时或者条件都满足时,如果都选了solo时,如图5-14: (图5-14) 此时,Attack动画播完会播放Stand动画,因为即使都选了solo,但...
来源: Laya3.0_文档 发布时间: 20241014
...回收到 Handler 对象池内 this.Tab.selectHandler.recover(); 4,run(): any 执行处理器 this.Tab.selectHandler.run(); //可以自行调用run() 5,runWith(data: any): any 执行处理器,并携带额外数据 this.Tab.selectHandler.runWith(1); //可以自行调用runWith(),并传...
来源: Laya3.0_文档 发布时间: 20241014
...)); } catch (JSONException e) { e.printStackTrace(); } m_Handler.post( new Runnable() { public void run() { //ui thread update ui JSONObject obj = new JSONObject(); try { obj.put("value", "Hello JS!"); } catch (JSONException e) { e.printStackTrace(); } ExportJavaFunction.CallBackToJS(JSBridge.class,...
来源: Laya3.0_文档 发布时间: 20241023
...class Main extends MainBase { private _animator: Laya.Animator; private _isRun: boolean; onAwake() { console.log("Game start"); //加载指定的模型预制体,并添加到Scene3D场景内 Laya.loader.load("girl/girl.lh").then(res => { let girl : Laya.Sprite3D = res.create(); this.scene3D.addC...
来源: Laya3.0_文档 发布时间: 20230303
...过USB联接到手机设备,然后在PC命令行模式下,通过 npm run debug 命令调起Chrome调试器(前提要保障PC是已安装了Chrome浏览器的)来联调手机真机环境的rpk包,如图3-5所示。当我们能看到Debugger URL opened in Chrome.这个提示的时候,说...
来源: Laya3.0_文档 发布时间: 20241014
... coverBefore); } 使用示例如下: const { regClass } = Laya; import { RuntimeScriptBase } from "./RuntimeScript.generated"; @regClass() export class RuntimeScript extends RuntimeScriptBase { onAwake(): void { //60帧后,图片的透明度变为0.5 Laya.timer.frameOnce(60, this, () => { thi...
来源: Laya3.0_文档 发布时间: 20241014
...r state: AnimatorState = new AnimatorState(); //动作名称 state.name = "run"; //动作播放起始时间 state.clipStart = 40 / 150; //动作播放结束时间 state.clipEnd = 70 / 150; //设置动作 state.clip = animator.getDefaultState().clip; //为动画组件添加一个动作状态 animator...
来源: Laya3.0_文档 发布时间: 20230303