大约有 148 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
...lass } = BP; @bpClass({ name:"TestBluePrint", canInherited: true, extends:"Script" }) export class TestBluePrint extends Laya.Script { } 需要注意的是,只有注册了构造函数,才可以在蓝图编辑器的createNew中创建这个类的实例,如图12-1所示。 const { bpClass } = BP;...
来源: Laya3.0_文档 发布时间: 20241014
...顺序错误,如下: <!--jsfile--startTag--> <script src="js/W.js"></script> <script src="js/L.js"></script> <script src="js/V.js"></script> <!--jsfile--endTag-->我尝试过删除一个类,或者改某个...
来源: Laya_社区 发布时间: 20181030
...eoNode: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.VideoNode }) public video: Laya.VideoNode; constructor() { super(); } // 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 ...
来源: Laya3.0_文档 发布时间: 20241014
...如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { // 获得Image组件 @property({ type: Laya.Image }) public img: Laya.Image; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void {...
来源: Laya3.0_文档 发布时间: 20241014
插件开发说明一、插件能力二、插件运行环境2.1 在Laya.Script中使用本地能力2.2 UI进程脚本和Scene进程脚本通讯的方式2.3 预览运行进程和UI进程的通讯方式三、制作编辑器UI四、程序化生成界面4.1 常用方法4.2 示例五、自定义Inspecto...
来源: Laya3.0_文档 发布时间: 20241014
...设置下找到Code导入类,增加如下内容:import {base} from "../script/base/BaseScene"; import BaseScene=base.BaseScene;注意:这里的base为命名空间,由于IDE导出时只能识别命名空间的导入方式(也就是import xxx = xx.xx的形式),如果没识别到,则会...
来源: Laya_社区 发布时间: 20200827
... = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); var __decorateClass = (decorators, target, key, kind) => { var result = kind > 1 ? void 0 : kind ? __get...
来源: Laya_社区 发布时间: 20230608
...en(); this.loadScene('LoginScene'); } } import LoginScene from "./script/LoginScene" /* * 游戏初始化配置; */ export default class GameConfig{ static width:number=640; static height:number=1136; static scaleMode:string="fixedwidth"; static screenMode:string="none"; static alignV:strin...
来源: Laya_社区 发布时间: 20190402
...如下: const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { @property({ type: Laya.Sprite3D }) public cube: Laya.Sprite3D; // 平移距离 private translate: Laya.Vector3 = new Laya.Vector3(1, 1, 1); constructor() { super(); } /** * 组件被激活后执...
来源: Laya3.0_文档 发布时间: 20241014
...数据源。 const { regClass, property } = Laya; @regClass() export class Script extends Laya.Script { @property({ type: Laya.List }) list: Laya.List constructor() { super(); } // 组件被启用后执行,例如节点被添加到舞台后 onEnable(): void { // 给List对象赋值 var data: Array&...
来源: Laya3.0_文档 发布时间: 20241014