大约有 152 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
Laya_社区(96) Laya2.0_文档(17) Laya3.0_api(14) Laya2.0_api(7) Laya3.0_文档(7) laya_api(7) Laya_示例(2) Laya2.0_示例(2)
...unction onAssetsLoaded() { var tTexture = Loader.getRes(mTexturePath); var arraybuffer = Loader.getRes(mAniPath); mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, parseComplete); mFactory.parseData(tTexture, arraybuffer, 10); } function parseComplete() { for (var i = 0; i = tAnimNum) { mA...
来源: Laya_示例 发布时间: 20241117
...equest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(i...
来源: Laya2.0_文档 发布时间: 20210714
...mplet, Event = Laya.Event; let tTexture = Loader.getRes(mTexturePath); let arraybuffer = Loader.getRes(mAniPath); mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, this.parseComplete); mFactory.parseData(tTexture, arraybuffer, 10); } parseComplete() { const Event = Laya.Event; for (let i =...
来源: Laya2.0_示例 发布时间: 20241117
...的高级开发人员。 Public Properties PropertyDefined By buffer : ArrayBuffer[read-only] 获取此对象的 ArrayBuffer 数据,数据只包含有效数据部分。 Byte bytesAvailable : int[read-only] 可从字节流的当前位置到末尾读取的数据的字节数。 Byte endian ...
来源: Laya2.0_api 发布时间: 20190513
...otoBuf,已解决自己做记录 因为原生的JS的protBuf需要用JS的ArrayBuffer往protoBuf 我之前取巧直接取laya的ByteArray的_data_来当ArrayBuffer用 会有问题,因为这个数据是被ByteArray封装过的,不能直接取。解决方法用ByteArray的getByte一个一个字...
来源: Laya_社区 发布时间: 20170227
...equest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(i...
来源: Laya2.0_文档 发布时间: 20210715
...机。 看到Native里有一个保存图片的方法。conch.saveAsJpeg( arrayBuff,width,height,conch.getCachePath()+"/test.jpg" ); 这个方法第一个参数需要传入arraryBuffer数据。 于是我使用drawToCanvas的方法获得HTMLCanvas。 并且使用HTMLCanvas.context.getImageData().da...
来源: Laya_社区 发布时间: 20180120
...ron 赞同来自: if( window.conch ) { window.conch.captureScreen(function(arrayBuff,width,height){ /* //存储文件的方式 conch.saveAsPng( arrayBuff,width,height,conch.getCachePath()+"/test.png" ); window.globalImage = window.document.createElement("img"); window.globalImage.onload=function() {...
来源: Laya_社区 发布时间: 20180227
...equest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(i...
来源: Laya2.0_文档 发布时间: 20210714
...sz:number)=>void):void; /** * 读取zip中的文件的内容,返回一个ArrayBuffer */ readFile(id:number):ArrayBuffer; close():void; new ():ZipFile; } declare var ZipFile:ZipFile; ``` * 手动更新dcc缓存的功能。 ```javascript interface AppCache{ ... /** * 更新dcc缓存中的一个文...
来源: Laya2.0_文档 发布时间: 20210714