大约有 264 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0041 秒)
Laya_社区(75) Laya3.0_api(71) Laya2.0_api(53) laya_api(38) Laya3.0_文档(11) Laya2.0_文档(10) Laya2.0_示例(3) Laya_示例(3)
...ivate * 加载声音。 * @param url 地址。 */ public function load(url:String):void { if (!MiniFileMgr.isLocalNativeFile(url)) { url = URL.formatURL(url); }else { if (url.indexOf("http://") != -1 || url.indexOf("https://") != -1) { if(MiniFileMgr.loadPath != "") { url = url.spl...
来源: Laya_社区 发布时间: 20180503
...index++) { var url:String = "../Res/Images/Role1/00011208_"+ index.toString() +".bmp"; arr.push(url); } Laya.loader.load(arr,Handler.create(this,LoadComplated)); ...
来源: Laya_社区 发布时间: 20170918
... duration():Number 获取动画片段时长。 AnimationClip load(url:String, complete:Handler):void[static] 加载动画片段。 AnimationClipProtected Methods MethodDefined By _disposeResource():void[override] AnimationClipProperty Detailisloopingpropertypublic var islooping:Boolean是...
来源: Laya2.0_api 发布时间: 20190513
...nder : MeshRender[read-only] 获取网格渲染器。 MeshSprite3D name : String节点名称。Node numChildren : int[read-only] 子对象数量。 Node parent : Node父节点。Node scene : Scene[read-only] 获得所属场景。 Sprite3D timer : Timer时间控制器,默认为Laya.timer。Nod...
来源: laya_api 发布时间: 20170929
...): void { console.log("加载进度: " + progress); } private onError(err: String): void { console.log("加载失败: " + err); } } } new laya.Loader_ProgressAndErrorHandle();package { import laya.events.Event; import laya.net.Loader; import laya.resource.Texture; import laya.utils.Handler; public c...
来源: Laya_示例 发布时间: 20241124
...aya/media/Sound.ts:38 释放声音资源。 Returns void event event(type: string, data?: any): boolean Inherited from EventDispatcher.event Defined in laya/events/EventDispatcher.ts:32 派发事件。 Parameters type: string 事件类型。 Optional data: any (可选)回调数据。注意:如...
来源: Laya3.0_api 发布时间: 20231115
...getData Defined in laya/d3/resource/models/Mesh.ts:132 Optional name name: string Inherited from Resource.name Defined in laya/resource/Resource.ts:105 名称。 url url: string Inherited from Resource.url Defined in laya/resource/Resource.ts:107 获取资源的URL地址。 uuid uuid: string Inherit...
来源: Laya3.0_api 发布时间: 20231115
...控制时,URL.formatURL中有个bug public static function formatURL(url:String, base:String = null):String { if (!url) return "null path"; //如果是全路径,直接返回,提高性能 if (url.indexOf(":") > 0) return url; //自定义路径格式化 if (customFormat != null) url = customFor...
来源: Laya_社区 发布时间: 20171213
...dateMark: number Defined in laya/d3/component/HLOD/HLODUtil.ts:85 url url: string Defined in laya/d3/component/HLOD/HLODUtil.ts:84 Methods load load(callFun: Function, hlod: any): void Defined in laya/d3/component/HLOD/HLODUtil.ts:94 loaded Parameters callFun: Function hlod: any Returns void release...
来源: Laya3.0_api 发布时间: 20231115
...t = new Browser.window.Blob([byte.buffer], { type: "image/png" }); var url:String = Browser.window.URL.createObjectURL(blob);//创建一个url对象; ////我们先用第一种方式显示图片到舞台; var sp:Sprite = new Sprite(); sp.loadImage(url); Laya.stage.addChild(sp);//添加到舞台 }...
来源: Laya2.0_文档 发布时间: 20210714