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

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

1. 资源加载 · LayaAir3.0文档 · LAYABOX [ 100%]

...ces/res/apes/monkey2.png"); } /**加载并显示图片 */ loadTexture(url: string, x: number = 0, y: number = 0): void { Laya.loader.load(url).then((res: Laya.Texture) => { let img = new Laya.Image(); img.texture = res; // img.skin = url; //ui组件直接设置skin也可以 img.pos(x, y); this.ow...

来源: Laya3.0_文档 发布时间: 20241014

2. 缓存工具-layadcc · LayaAir3.0文档 · LAYABOX [ 93%]

...则按照http://*/算,所有的请求都裁掉主机地址 pathMapToDCC:string; /** * * @param frw 文件访问接口,不同的平台需要不同的实现。如果为null,则自动选择网页或者native两个平台 * @param dccurl dcc的服务器地址 */ constructor(dccurl:string, frw:new (...

来源: Laya3.0_文档 发布时间: 20241024

3. 网络通信 · LayaAir3.0文档 · LAYABOX [ 88%]

...串。如果请求未完成或失败,则该值为 null responseText DOMString 此次请求的响应为文本,或是当请求未成功或还未发送时为 null只读。 responseType XMLHttpRequestResponseType 设置该值能够改变响应类型。就是告诉服务器你期望的响应格式。...

来源: Laya3.0_文档 发布时间: 20241014

4. 场景管理 · LayaAir3.0文档 · LAYABOX [ 88%]

...) * @param progress 加载进度回调(可选) */ static open(url: string, closeOther: boolean = true, param: any = null, complete: Handler = null, progress: Handler = null): Promise<Scene> { Scene.showLoadingPage(); return Scene.load(url, Handler.create(null, this._onSceneLoaded, [close...

来源: Laya3.0_文档 发布时间: 20241014

5. zip更新 · LayaAir3.0文档 · LAYABOX [ 85%]

...这个参数。因为可能太大。 */ declare var downloadBigFile:(url:string, local:string, onprog:(total:number,now:number,speed:number)=>boolean,oncomp:(curlret:number, httpret:number)=>void, trynum:number, opttimeout:number)=>void; 处理zip文件的ZipFile类。 interface ZipFile{ /*...

来源: Laya3.0_文档 发布时间: 20241024

6. webview · LayaAir3.0文档 · LAYABOX [ 84%]

...接口来实现。 1. 接口定义 /** * 显示一个webview * @param url {string} 要显示的url地址。 * @param posx {number} weview的左上角位置 * @param posy {number} webivew的左上角位置 * @param width {number} webview的宽度 * @param height {number} webview的高度 * @param can...

来源: Laya3.0_文档 发布时间: 20230303

7. 使用二进制图片 · LayaAir3.0文档 · LAYABOX [ 81%]

... new Sprite(); //加载Base64图片数据 sp1.loadImage(e.target.result as string); this.owner.addChild(sp1); } }); 上述代码中,用 Laya.loader.fetch 加载图片二进制数据,根据自定义的规则,可以解析数据加密方式,并获得完整图片数据。在这里我们更多的...

来源: Laya3.0_文档 发布时间: 20230303

8. 2.x引擎项目升级指南 · LayaAir3.0文档 · LAYABOX [ 75%]

...需要暴露,上面就都需要加上@property()。 @property( { type : String } ) public text: string = ""; constructor() { super(); } } 5、Runtime的使用差异 3.0的场景与2.0完全不是一个概念, 3.0的runtime只能在场景上的2D根节点Scene2D或预制体的根节点上设置...

来源: Laya3.0_文档 发布时间: 20230406

9. 使用音频 · LayaAir3.0文档 · LAYABOX [ 72%]

...乐或音效)的音量。 */ static setSoundVolume(volume: number, url: string = null): void { if (url) { SoundManager._setVolume(url, volume); } else { SoundManager.soundVolume = volume; for (let i = SoundManager._channels.length - 1; i >= 0; i--) { let channel = SoundManager._channels[i]; if ...

来源: Laya3.0_文档 发布时间: 20241014

10. 预制体模块 · LayaAir3.0文档 · LAYABOX [ 67%]

...} /** * 当报错时打印错误 * @param err 报错信息 */ onError(err: string): void { console.log("加载失败: " + err); } /** * 加载时侦听 */ onLoading(progress: number): void { //接近完成加载时,让显示进度比实际进度慢一点,这是为打开场景时的自动加载...

来源: Laya3.0_文档 发布时间: 20241014