大约有 25 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
...cript extends Laya.Script { @property({ type: Laya.List }) list: Laya.List constructor() { super(); } // 组件被启用后执行,例如节点被添加到舞台后 onEnable(): void { // 给List对象赋值 var data: Array<any> = []; for (var m: number = 0; m < 20; m++) { data.push({ m_lab...
来源: Laya3.0_文档 发布时间: 20241014
...lare owner : Laya.Sprite3D; @property({ type: Laya.Text }) txt: Laya.Text; constructor() { super(); } onAwake(): void { this.txt.text = "第{n=1}页"; //显示文本的初始化内容 } onStart(): void { let page: number = 1; Laya.timer.frameLoop(10, this, () => { page += 1; //在定时器中让...
来源: Laya3.0_文档 发布时间: 20241014
... 平移距离 private translate: Laya.Vector3 = new Laya.Vector3(1, 1, 1); constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { // 平移cube this.cube.transform.translate(this.translate, false); } }...
来源: Laya3.0_文档 发布时间: 20241014
...type: Laya.Animation }) //在IDE面板中显示属性 ani: Laya.Animation; constructor() { super(); } //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { this.ani.source = "resources/role.atlas"; //接收动画数据源为图集 thi...
来源: Laya3.0_文档 发布时间: 20241014
... Laya.Script { @property({ type: Laya.Button }) public uiBtn: Laya.Button; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.uiBtn.on(Laya.Event.CLICK, this, () => { //点击后,打开Ms...
来源: Laya3.0_文档 发布时间: 20241014
...rty } = Laya; @regClass() export class UI_HScrollBar extends Laya.Script { constructor() { super(); } // 文本组件,用于显示滚动条的value值 public text: Laya.Text; // 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { //...
来源: Laya3.0_文档 发布时间: 20241014
...rty } = Laya; @regClass() export class UI_VScrollBar extends Laya.Script { constructor() { super(); } // 文本组件,用于显示滚动条的value值 public text: Laya.Text; // 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { //...
来源: Laya3.0_文档 发布时间: 20241014
...Laya.Sprite; @property({ type: Laya.Sprite }) public sprite2: Laya.Sprite; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.sprite2.on(Laya.Event.MOUSE_DOWN, this, this.test2);//设置监听...
来源: Laya3.0_文档 发布时间: 20241014
...于只定义类型的需求 @property(String) public text2: string = ""; constructor() { super(); } } @property()是IDE识别组件属性并显示到IDE属性面板上的装饰器标识,类型是装饰器属性标识必须携带的参数。 如果我们不需要给属性写一个tips说明,也...
来源: Laya3.0_文档 发布时间: 20241014
...收机制 */ @regClass() export default class Bullet extends Laya.Script { constructor() { super(); } onEnable(): void { //设置初始速度 let rig: Laya.RigidBody = this.owner.getComponent(Laya.RigidBody); rig.setVelocity({ x: 0, y: -10 }); } onTriggerEnter(other: any, self: any, contact: any): v...
来源: Laya3.0_文档 发布时间: 20241014