大约有 396 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0077 秒)
Laya_社区(125) Laya3.0_api(102) Laya2.0_api(77) laya_api(59) Laya2.0_文档(13) Laya2.0_示例(8) Laya_示例(7) Laya3.0_文档(5)
...点 Parameters node: Node Returns boolean loadImage loadImage(url: string, complete?: Handler): Sprite Defined in laya/display/Sprite.ts:1578 加载并显示一个图片。相当于加载图片后,设置texture属性 注意:2.0改动:多次调用,只会显示一个图片(1.0会显示多个...
来源: Laya3.0_api 发布时间: 20231115
...会忽略lock=true的资源。 Returns void Static load load(url: string, complete: Handler): void Inherited from Material.load Defined in laya/d3/core/material/Material.ts:62 加载材质。 Parameters url: string 材质地址。 complete: Handler 完成回掉。 Returns void Globals "laya/d3/core/...
来源: Laya3.0_api 发布时间: 20231115
...会忽略lock=true的资源。 Returns void Static load load(url: string, complete: Handler): void Inherited from Material.load Defined in laya/d3/core/material/Material.ts:62 加载材质。 Parameters url: string 材质地址。 complete: Handler 完成回掉。 Returns void Globals "laya/d3/core/...
来源: Laya3.0_api 发布时间: 20231115
...件类型是否是鼠标事件。 EventDispatcher loadImage(url:String, complete:Handler = null):Sprite 加载并显示一个图片。相当于加载图片后,设置texture属性 注意:2.0改动:多次调用,只会显示一个图片(1.0会显示多个图片),x,y,width,height参数取...
来源: Laya2.0_api 发布时间: 20190513
...会忽略lock=true的资源。 Returns void Static load load(url: string, complete: Handler): void Inherited from Material.load Defined in laya/d3/core/material/Material.ts:62 加载材质。 Parameters url: string 材质地址。 complete: Handler 完成回掉。 Returns void Globals "laya/d3/core/...
来源: Laya3.0_api 发布时间: 20231115
...{ if(this.te == null){ this.te = new Laya.Templet(); this.te.on(Laya.Event.COMPLETE, this, this.teComplete); this.te.loadAni("res/wing_01_side.sk"); } } else if(e.keyCode == 50 || e.keyCode == 98) { if(this.te != null){ this.te.destroy(); this.te = null; this.sk.destroy(); this.sk = null; } } } priv...
来源: Laya_社区 发布时间: 20190320
...fun.bind(scope); return rst; } __onEnd() { if (this.loops == 1) { if (this.completeHandler) { Laya.Laya.systemTimer.once(10, this, this.__runComplete, [this.completeHandler], false); this.completeHandler = null; } this.stop(); this.event(Laya.Event.COMPLETE); return; } if (this.loops > 0) { this....
来源: Laya_社区 发布时间: 20200103
...l:String, x:Number = 0, y:Number = 0, width:Number = 0, height:Number = 0, complete:Handler = null):Sprite 加载并显示一个图片。功能等同于graphics.loadImage方法。支持异步加载。 注意:多次调用loadImage绘制不同的图片,会同时显示。 Sprite loadImages(urls:...
来源: laya_api 发布时间: 20170929
...会忽略lock=true的资源。 Returns void Static load load(url: string, complete: Handler): void Inherited from Material.load Defined in laya/d3/core/material/Material.ts:62 加载材质。 Parameters url: string 材质地址。 complete: Handler 完成回掉。 Returns void Globals "laya/d3/core/...
来源: Laya3.0_api 发布时间: 20231115
...Request(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); xhr.send("res/data.data","","get","text"); function processHandler(data){ console.log(data); } function erro...
来源: Laya2.0_文档 发布时间: 20210714