大约有 2,727 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0073 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(86)
...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, me...
来源: laya_api 发布时间: 20170929
... Public Methods Show Inherited Public Methods MethodDefined By destroy():void 销毁组件 Component onReset():void 重置组件参数到默认值,如果实现了这个函数,则组件会被重置并且自动回收到对象池,方便下次复用 如果没有重置,则不进行回收复用...
来源: Laya2.0_api 发布时间: 20190513
...showall"; Laya.stage.bgColor = "#232628"; this.setup(); } private setup(): void { this.createSprite(); Laya.stage.on(Event.MOUSE_UP, this, this.onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, this.onMouseUp); } private createSprite(): void { this.sp = new Sprite(); var w: number = 200, h: number = ...
来源: Laya_示例 发布时间: 20241119
...Pic(); this.showConsoleText(); this.startShake(); } private showShakePic():void { var shakePic:Sprite = new Sprite(); shakePic.loadImage("../../res/inputDevice/shake.png"); Laya.stage.addChild(shakePic); } private showConsoleText():void { this.console = new Text(); Laya.stage.addChild(this.console);...
来源: Laya_示例 发布时间: 20241119
...e.bgColor = "#232628"; Stat.show(); this.startFun(); } private startFun(): void { //创建动画模板 this.templet = new SpineTemplet(Laya.SpineVersion.v3_8); this.templet.loadAni(this.aniPath); this.templet.on(Event.COMPLETE, this, this.parseComplete); this.templet.on(Event.ERROR, this, this.onErr...
来源: Laya2.0_示例 发布时间: 20241119
...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node addComponent(type:Class):* 添加组件。 Node addComponentIntance(comp:Component):* 添加组件实例。 Node addInputChild(node:Node):NodeNode callLater(method:Function, args:Array = nu...
来源: Laya2.0_api 发布时间: 20190513
...mber Methods addMorphChannel addMorphChannel(channel: MorphTargetChannel): void Defined in laya/d3/resource/models/MorphTargetData.ts:49 Parameters channel: MorphTargetChannel Returns void clone clone(): MorphTargetData Defined in laya/d3/resource/models/MorphTargetData.ts:164 Returns MorphTargetDat...
来源: Laya3.0_api 发布时间: 20231115
...e 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 N...
来源: laya_api 发布时间: 20170929
...showall"; Laya.stage.bgColor = "#232628"; this.setup(); } private setup(): void { this.createSprtie(); this.drawTrack(); } private createSprtie(): void { const w: number = 50; const h: number = 30; this.button = new Sprite(); this.button.graphics.drawRect(0, 0, w, h, "#FF7F50"); this.button.pivot(w ...
来源: Laya_示例 发布时间: 20241119
...tructor( options: Object ); addScene( title: string, initfunc: Function ): void; restartCurrentScene(): void; } } //多级模块 declare module laya.ani.bone { class EventData { name:string; intValue:number; floatValue:number; stringValue:string; audioValue:string; time:number; constructor(); } } //...
来源: Laya2.0_文档 发布时间: 20210715