• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 2,727 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0073 秒)

661. laya.ui.ComboBox [ 87%]

...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node callLater(method:Function, args:Array = null):void 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 Component clearTimer(caller:*, me...

来源: laya_api 发布时间: 20170929

662. laya.physics.joint.GearJoint [ 87%]

... Public Methods Show Inherited Public Methods MethodDefined By destroy():void 销毁组件 Component onReset():void 重置组件参数到默认值,如果实现了这个函数,则组件会被重置并且自动回收到对象池,方便下次复用 如果没有重置,则不进行回收复用...

来源: Laya2.0_api 发布时间: 20190513

663. 鼠标交互-双指旋转(多点触控) [ 87%]

...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

664. 输入设备-摇一摇 [ 87%]

...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

665. 骨骼动画-适配版Spine [ 87%]

...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

666. laya.ui.TextInput [ 87%]

...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

667. laya.d3.resource.models.MorphTargetData_API3.0 [ 87%]

...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

668. laya.display.Node [ 87%]

...e 添加子节点到指定的索引位置。 Node  addChildren(... args):void 批量增加子节点 Node  clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node  contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 N...

来源: laya_api 发布时间: 20170929

669. 鼠标交互-滑动 [ 87%]

...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

670. 学会编写d.ts声明文件(TypeScript-IDE篇(TS)-代码模式基础) [ 87%]

...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