大约有 9 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
...脚本,而后添加的代码如下所示: const { regClass } = Laya; import { RuntimeScriptBase } from "./RuntimeScript.generated"; @regClass() export class RuntimeScript extends RuntimeScriptBase { onAwake(): void { // Button添加鼠标事件,让Image不显示 this.Button.on( Laya.Event.MOUS...
来源: Laya3.0_文档 发布时间: 20241014
...rl预制体,添加到场景中,并用鼠标点击屏幕来切换动画 import { MainBase } from "./Main.generated"; import KeyBoardManager = Laya.InputManager; import Keyboard = Laya.Keyboard; const { regClass, property } = Laya; @regClass() export class Main extends MainBase { private _animator...
来源: Laya3.0_文档 发布时间: 20230303
...的提高程序的运行速度和稳定性。 5.1 自定义Particle3D类 import Node = Laya.Node; import Sprite3D = Laya.Sprite3D; import ShuriKenParticle3D = Laya.ShuriKenParticle3D; import ShurikenParticleSystem = Laya.ShurikenParticleSystem; import { Pool } from "./Pool"; //粒子特效的基类...
来源: Laya3.0_文档 发布时间: 20241014
...。 使用npm install xxx --save 安装xxx包。 然后在代码中使用import语句导入即可。 1.2 使用示例 我们用第三方AStar模块来讲解: 1.2.1 npm init 在开发中使用npm init会生成一个pakeage.json文件,这个文件主要是用来记录这个项目的详细信息的...
来源: Laya3.0_文档 发布时间: 20241014
...本 "点击成功!",代码如下所示: const { regClass } = Laya; import { MsgRTBase } from "./MsgRT.generated"; @regClass() export class MsgRT extends MsgRTBase { onOpened(param: any): void { console.log(param.text); } } 这样,点击Scene场景中的Button,就会打印日志“点击成...
来源: Laya3.0_文档 发布时间: 20241014
...的LayaDCCTools的接口见源码。 5.8 根据文件列表生成pack包 import {layadcctools} from './dist/layadcctools.js' const {LayaDCCTools,LayaDCC,Params,PackRaw} = layadcctools; layadcctools.LayaDCCTools.genPackByFileList( [ 'D:/work/ideproj/DCCPlugin/release/web/internal/sky.jpg', ], 'd:/tem...
来源: Laya3.0_文档 发布时间: 20241024
...面这两个TS代码: //MyScript.ts const { regClass, property } = Laya; import Animal from "./Animal"; @regClass() export class MyScript extends Laya.Script { @property({ type : Animal }) animal : Animal; } //Animal.ts const { regClass, property } = Laya; @regClass() export default class Animal {...
来源: Laya3.0_文档 发布时间: 20241014
...码中,可以看到,通过预加载一组预制体的实现代码: import { LoadingRTBase } from "./LoadingRT.generated"; const { regClass, property } = Laya; @regClass() export default class LoadingRT extends LoadingRTBase { onAwake(): void { Laya.loader.load( //先加载本场景要用的 ["...
来源: Laya3.0_文档 发布时间: 20241014
...面这两个TS代码: //MyScript.ts const { regClass, property } = Laya; import Animal from "./Animal"; @regClass() export class MyScript extends Laya.Script { @property({ type : Animal }) animal : Animal; } //Animal.ts const { regClass, property } = Laya; @regClass() export default class Animal {...
来源: Laya3.0_文档 发布时间: 20241014