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

大约有 1,012 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0070 秒)

131. 游戏铺满固定大小容器,火狐和谷歌正常,edge会有滚动条? [ 80%]

...Laya.Browser.clientHeight){                         console.log("横屏",this.lastClientWidth);                         if(Laya.stage.scaleMode != Laya.Stage.SCALE_SHOWALL){                             Laya.stage.scaleMode = La...

来源: Laya_社区 发布时间: 20190514

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

...始读入byte中。省略其中的浮点数20.0和整数16 byte.pos = 0;// console.log(byte.readUTFString())//从byte中读出字符串。 ``` - 读取数据 **getByte**():number在字节流中读一个字节。 **getInt16**():number在当前字节偏移量位置处读取 Int16 值。 **getInt32**()...

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

133. 附加脚本的使用问题 [ 80%]

...本的使用问题 class ScaleButton {     constructor() {         console.log("加载ScaleButton");     }     private _owner: any;     public set owner(o: laya.display.Sprite) {         this._owner = o;         console.log("设置owner");     }     public get owner(): laya.d...

来源: Laya_社区 发布时间: 20170601

134. 继承Scene没有onEnable [ 80%]

...    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

135. 开放数据域组件 · LayaAir3.3 · 引擎文档 · LAYABOX [ 80%]

...gnore wx.setUserCloudStorage({ KVDataList: KVDataList, success: () => { console.log("数据保存成功") }, fail: () => { console.log("数据保存失败") }, complete: () => { console.log("执行调用结束回调") } }); } } 然后是getFriendCloudStorage方法,来到开放数据域的...

来源: Laya3.0_文档 发布时间: 20251010

136. 淘宝创意互动分包指南(TypeScript-小游戏适配文档-淘宝创意互动) [ 80%]

... { my.redirectTo({ url: "/subpackage1/page2/index", success: function () { console.log("success") }, fail: function (err) { console.log("2222", err) } }) } ``` 注意:在加载资源的时候,分包文件夹名称前也需要加“ / ” #### 2.2 资源分包 资源分包适合页面数量较多...

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

137. Laya.loader.create 加载进度问题 [ 80%]

...AssetsLoading)); } ModelManager.prototype.onCreateComplete = function () { console.log("onCreateComplete"); var pipe = Laya.loader.getRes("res/Pipe/Pipe/a.lh"); console.log("pipe", pipe); } ModelManager.prototype.onAssetsLoading = function (progress) { console.log("progress = ",progress); } 打印...

来源: Laya_社区 发布时间: 20180514

138. js socket 连接不上 [ 80%]

...r(app); var io = require('socket.io').listen(server); server.listen(8888); console.log("服务器启动"); io.on('connection', function (ws) { console.log('客户端连接成功!'); ws.on('foo', function(data){ console.log(data); }); }); 自己写的html页面 <!DOCTYPE html> <html> &l...

来源: Laya_社区 发布时间: 20180509

139. Laya.Byte使用getUint16读取错误 [ 80%]

Laya.Byte使用getUint16读取错误 var bytes1 = new Laya.Byte([0,8]); console.log('++',bytes1.getUint8(),bytes1.getUint8()); var bytes2 = new Laya.Byte([0,8]); console.log('++',bytes2.getUint16()); var bytes3 = new Laya.Byte([0,8,0,0]); console.log('++',bytes3.getUint32());   采用上面测试...

来源: Laya_社区 发布时间: 20180625

140. RopeJoint代码动态创建 无法设置otherbody [ 80%]

...mponent(Laya.RopeJoint);         this.rope.otherBody=lala;         console.log(lala);         let collider:Laya.CircleCollider=this.owner.getComponent(Laya.CircleCollider);         this.rope.otherAnchor=["540","1060"];         this.rope.maxLength=286;         console.log(this...

来源: Laya_社区 发布时间: 20220413