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

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

1. Byte二进制读写(ActionScript-LayaAir基础篇(AS3)-数据与通信) [ 100%]

...(msg.age); byte.writeFloat32(msg.weight); byte.writeInt16(msg.height); ``` 输出看下结果: ```typescript //设置pos为0 开始从头开始按照写入的顺序读取读取 byte.pos = 0; trace(byte.getUTFString()); trace(byte.getByte()); trace(byte.getFloat32()); trace(byte.getInt16()); ``` ##...

来源: Laya2.0_文档 发布时间: 20210715

2. Byte二进制读写(JavaScript-LayaAir基础篇(JS)-数据与通信) [ 99%]

...(msg.age); byte.writeFloat32(msg.weight); byte.writeInt16(msg.height); ``` 输出看下结果: ```typescript //设置pos为0 开始从头开始按照写入的顺序读取读取 byte.pos = 0; console.log(byte.getUTFString()); console.log(byte.getByte()); console.log(byte.getFloat32()); console.log(...

来源: Laya2.0_文档 发布时间: 20210714

3. Byte二进制读写(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 99%]

...(msg.age); byte.writeFloat32(msg.weight); byte.writeInt16(msg.height); ``` 输出看下结果: ```typescript //设置pos为0 开始从头开始按照写入的顺序读取读取 byte.pos = 0; console.log(byte.getUTFString()); console.log(byte.getByte()); console.log(byte.getFloat32()); console.log(...

来源: Laya2.0_文档 发布时间: 20210715