大约有 12 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0034 秒)
...= new Laya.Byte(); //这里我们采用小端 this.byte.endian = Laya.Byte.LITTLE_ENDIAN; this.socket = new Laya.Socket(); //这里我们采用小端 this.socket.endian = Laya.Byte.LITTLE_ENDIAN; //建立连接 this.socket.connect("localhost", 9244); // this.socket.connectByUrl("ws://localhost:9241"...
来源: Laya_社区 发布时间: 20171129
...= new Laya.Byte(); //这里我们采用小端 this.byte.endian = Laya.Byte.LITTLE_ENDIAN; this.socket = new Laya.Socket(); //这里我们采用小端 this.socket.endian = Laya.Byte.LITTLE_ENDIAN; //建立连接 this.socket.connectByUrl("ws://localhost:8899"); this.socket.on(Laya.Event.OPEN, this, th...
来源: Laya_社区 发布时间: 20180210
...! this.byte = new Laya.Byte(); this.byte.endian = Laya.Byte.LITTLE_ENDIAN; //这里我们采用小端 this.socket = new Laya.Socket(); this.socket.endian = Laya.Byte.LITTLE_ENDIAN; //这里我们采用小端 //建立连接 this.socket.connectByUrl("wss://192...
来源: Laya_社区 发布时间: 20180510
...= new Laya.Byte(); //这里我们采用小端 this.byte.endian = Laya.Byte.LITTLE_ENDIAN; this.socket = new Laya.Socket(); //这里我们采用小端 this.socket.endian = Laya.Byte.LITTLE_ENDIAN; //建立连接 this.socket.connectByUrl("ws://45.78.**.**:3000"); this.socket.on(Laya.Event.OPEN, this, ...
来源: Laya_社区 发布时间: 20180125
...mple() { //初始化引擎 this.byte = new Byte(); this.byte.endian = Byte.LITTLE_ENDIAN;//这里我们采用小端; this.socket = new Socket(); this.socket.endian = Byte.LITTLE_ENDIAN;//这里我们采用小端; this.socket.on(Event.OPEN,this,openHandler); this.socket.on(Event.MESSAGE,this,rece...
来源: Laya_社区 发布时间: 20180202
...10.1.103:8081'); this.byte = new Laya.Byte(); this.byte.endian = Laya.Byte.LITTLE_ENDIAN; this.socket = new Laya.Socket(); this.socket.endian = Laya.Byte.LITTLE_ENDIAN; //建立连接 this.socket.connectByUrl("ws://10.10.1.103:8888"); // this.socket.connect("10.10.1.103",8888); this.socket.on(Laya.E...
来源: Laya_社区 发布时间: 20181107
...问题 我尝试用 var byte:Byte = new Byte(); byte.endian = Laya.Socket.LITTLE_ENDIAN; byte.writeUint32(12); byte.writeUint16(0); byte.writeUint16(msg.opcode()); msg.encode(byte); this._socket.send(byte.__getBuffer().slice(0, byte.length); //this._socket.send(byte.__getBuffer()); -->>这两...
来源: Laya_社区 发布时间: 20170905
...10.1.103:8081'); this.byte = new Laya.Byte(); this.byte.endian = Laya.Byte.LITTLE_ENDIAN; this.socket = new Laya.Socket(); this.socket.endian = Laya.Byte.LITTLE_ENDIAN; //建立连接 this.socket.connectByUrl("ws://10.10.1.103:8888"); // this.socket.connect("10.10.1.103",8888); this.socket.on(Laya.E...
来源: Laya_社区 发布时间: 20180509
...ay // var floats:Laya.Byte = new Laya.Byte(); // floats.endian = Laya.Byte.LITTLE_ENDIAN; // floats.getFloat32(value); // buffer.writeArrayBuffer(floats); Pomelo.writeBytes(this.encodeFloat(value),buffer); break; case 'double': // var doubles:Laya.Byte = new Laya.Byte(); // doubles.endian = Laya.Byt...
来源: Laya_社区 发布时间: 20180119
...g:80"); socket.connectByUrl('ws://127.0.0.1:88');// //output.endian = Byte.LITTLE_ENDIAN;//这里我们采用小端; output = socket.output; //socket.endian = Byte.LITTLE_ENDIAN;//这里我们采用小端; socket.on(Laya.Event.OPEN, this, onSocketOpen); socket.on(Laya.Event.CLOSE, this, onSocket...
来源: Laya_社区 发布时间: 20170822