大约有 152 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
Laya_社区(96) Laya2.0_文档(17) Laya3.0_api(14) Laya2.0_api(7) Laya3.0_文档(7) laya_api(7) Laya_示例(2) Laya2.0_示例(2)
.... Public Methods MethodDefined By MeshReader()MeshReader read(data:ArrayBuffer, mesh:Mesh, materials:Vector.<BaseMaterial>, subMeshes:Vector.<SubMesh>, materialMap:Object):void[static] MeshReaderConstructor DetailMeshReader()Constructorpublic function MeshReader()Method Detailrea...
来源: laya_api 发布时间: 20170929
.... Public Methods MethodDefined By MeshReader()MeshReader read(data:ArrayBuffer, mesh:Mesh, subMeshes:Vector.<SubMesh>):void[static] MeshReaderConstructor DetailMeshReader()Constructorpublic function MeshReader()Method Detailread()method public static function read(data:ArrayBuffer, mes...
来源: Laya2.0_api 发布时间: 20190513
...的高级开发人员。 Public Properties PropertyDefined By buffer : ArrayBuffer[read-only] 获取此对象的 ArrayBuffer 数据,数据只包含有效数据部分。 Byte bytesAvailable : int[read-only] 可从字节流的当前位置到末尾读取的数据的字节数。 Byte endian ...
来源: laya_api 发布时间: 20170929
...ytesAvailable endian length pos Methods clear getUTFBytes getUTFString readArrayBuffer readByte readFloat32 readFloat32Array readFloat64 readInt16 readInt16Array readInt32 readString readUint16 readUint32 readUint8 readUint8Array writeArrayBuffer writeByte writeFloat32 writeFloat64 writeInt16 writeI...
来源: Laya3.0_api 发布时间: 20231115
...LayaNative端使用.ttf字体的方法setFontFaceFromBuffer(fontFamily,arrayBuffer),fontFamily为字体名称 arrayBuffer为ttf文件的内容 arrayBuffer(下载.ttf文件后的二进制数据)package { import laya.display.Text; import laya.net.Loader; import laya.utils.Browser; import...
来源: Laya_社区 发布时间: 20161219
...或直接设置为1135*640的大小. 例子: conch.captureScreen(function (arrayBuff, width, height) { conch.saveAsPng(arrayBuff, width, height, conch.getCachePath() + "/test.png"); var url = "file:///" + conch.getCachePath() + "/test.png"; }); 如果:改变第二行的宽高,保存下来的图片...
来源: Laya_社区 发布时间: 20170811
out.writeShort is not a function var out:ArrayBuffer = new ArrayBuffer(); out.writeShort(0); out.writeByte(0); out.writeInt(10011); Uncaught TypeError: out.writeShort is not a function 麻烦告诉下是哪里的问题,谢谢。 2017-06-02 添加评论 免费帖 --> 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20170602
...只需要调用Socket的send函数即可,参数可以是string或者是ArrayBuffer。 发送字符串格式: ```typescript this.socket.send("hello world");//这是发送字符串的形式。 ``` 发送二进制格式的数据: ```typescript this.byte.writeByte(1);//写入一个字节 this.byte...
来源: Laya2.0_文档 发布时间: 20210714
...的数组的length也是2,只是数组中的每一项进行了转化)。 `ArrayBuffer`:二进制数据缓冲区。 上面的三种方法都可以实例化一个Byte,根据参数的不同创建二进制数据。 ```typescript //实例化一个二进制数组Byte var byte:Byte = new Byte(); //或...
来源: Laya2.0_文档 发布时间: 20210715
...的数组的length也是2,只是数组中的每一项进行了转化)。 `ArrayBuffer`:二进制数据缓冲区。 上面的三种方法都可以实例化一个Byte,根据参数的不同创建二进制数据。 ```typescript //实例化一个二进制数组Byte var byte:Laya.Byte = new Laya.Byte...
来源: Laya2.0_文档 发布时间: 20210715