大约有 1,309 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0052 秒)
Laya_社区(1120) Laya2.0_文档(69) Laya3.0_文档(50) Laya2.0_示例(27) Laya_示例(24) Laya3.0_api(17) laya_api(1) Laya2.0_api(1)
...入口 class GameMain{ constructor() { Laya.init(600,400, WebGL); console.log("Before In One, Time = " + Date.now()); Laya.timer.once(1,this,this.One) console.log("After In One, Time = " + Date.now()); } One():void{ console.log("In One, Time = " + Date.now()); } } new GameMain(); 控制台结果...
来源: Laya_社区 发布时间: 20190827
... String("大家好,这是websocket通信!"); console.log("str.length*2:" + str.length*2); var b = new ArrayBuffer(20 + str.length*2); var dv = new DataView(b, 0); dv.setUint16(0, str.length*2, false); dv.se...
来源: Laya_社区 发布时间: 20170628
...this.onError); //数据传输失败后返回 //post数据的写法 console.log(JSON.stringify(request)); this.http.send(url,JSON.stringify(request), 'post', 'text',["content-type","application/json"]); } function onProgress(e) { console.log("run onProgress"); } function onComplete(e) { console.log("...
来源: Laya_社区 发布时间: 20180315
...byte中。省略其中的浮点数20.0和整数16 byte.pos = 0;// console.log(byte.readUTFString())//从byte中读出字符串。 ``` - 读取数据 **getByte**():number在字节流中读一个字节。 **getInt16**():number在当前字节偏移量位置处读取 Int16 值。 **getInt32**():number...
来源: Laya2.0_文档 发布时间: 20210714
...directTo({ url: "/subpackage1/page2/index", success: function () { console.log("success") }, fail: function (err) { console.log("2222", err) } }) } ``` 注意:在加载资源的时候,分包文件夹名称前也需要加“ / ” #### 2.2 资源分包 资源分包适合页面数量较多的小...
来源: Laya2.0_文档 发布时间: 20210715
...wser.clientHeight){ console.log("横屏",this.lastClientWidth); if(Laya.stage.scaleMode != Laya.Stage.SCALE_SHOWALL){ Laya.stage.scaleMode = Laya.Stage...
来源: Laya_社区 发布时间: 20190514
...m ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: npm ERR! /var/root/.npm/_logs/2018-05-08T04_07_13_726Z-debug.log 环境: mac 10.13.4 (17E202) 尝试了 sudo npm install layacmd -g sudo -s...
来源: Laya_社区 发布时间: 20180508
...super(); } public onAwake():void{ console.log(1111); } } 2.继承Sprite 执行后会有onAwake let t = new tt(); Laya.Scene.root.addChild(t); } } //激活启动类 new Main(); class tt extends Laya.Sprite{ ...
来源: Laya_社区 发布时间: 20190701
...= PlatformClass.createClass("demo.JSBridge")//创建脚步代理 } console.log("test step ~~~~~~~~~~~~~~~~~~~~~~1") if(os == "Conch-ios"){ }else if (os == "Conch-android") { console.log("test step ~~~~~~~~~~~~~~~~~~~~~~2") if(bridge){ console.log("test step ~~~~~~~~~~~~~~~~~~~~~~3") bridge.call("tes...
来源: Laya_社区 发布时间: 20211111
...ass() export class ProtobufDemo extends Laya.Script { onEnable() { console.log("Game start"); } } 2.2 Protobuf示例脚本 引入了protobuf模块就可以直接在项目中使用了,这里我们写了一个简单的示例DEMO,完整代码如下: // src/ProtobufDemo.ts // 引入生成的 proto...
来源: Laya3.0_文档 发布时间: 20241119