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

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

151. 使用HtmlDivElement取不到实际大小 [ 71%]

...才试了一下,貌似加上<div>就不能计算了,代码如下: (function() { var Stage = Laya.Stage; var HTMLDivElement = Laya.HTMLDivElement; var HTMLIframeElement = Laya.HTMLIframeElement; var Browser = Laya.Browser; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换...

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

152. LayaAir引擎之webGl之bindTexture: attempt to bind a deleted texture [ 70%]

...ttempt to bind a deleted texture 源码为     WebGLContext.bindTexture=function(gl,target,texture){             gl.bindTexture(target,texture);             WebGLContext.curBindTexTarget=target;             WebGLContext.curBindTexValue=texture;         } 看看有...

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

153. 飞机大战出现的问题注册了类New的时候报错未定义 [ 70%]

...机大战出现的问题注册了类New的时候报错未定义 var Game=(function(){ (function Game(){ Laya.init(400,852); this.bg = new BackGround(); //把背景添加到舞台上显示出来 Laya.stage.addChild(this.bg);  })();     })();   //循环滚动的游戏背景 var BackGround = (func...

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

154. BackGround.super(this);这个报错 Cannot read property 'call' of undefined [ 70%]

...1-10 0 1 分享 微博 QZONE 微信 oy2419498011 赞同来自: var shouye=(function(){ (function shouye(){ Laya.init(100,300); this.bgimg=new BackGround(); Laya.stage.addChild(this.bgimg); })(); return shouye; })(); var BackGround = (function (_super) { function BackGround() { BackGround.super(thi...

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

155. 示例打地鼠发布打包后提示TypeError: this.preinitialize is not a function [ 70%]

...示例打地鼠发布打包后提示TypeError: this.preinitialize is not a function $ adb shell am start -n "com.layabox.game/demo.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -D Waiting for application to come online: com.layabox.game.test | com.layabox.game Conne...

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

156. 关于HttpRequest报错问题 [ 70%]

....ERROR,this,errorHandler); xmlHttp.on(Event.PROGRESS,this,processHandler); function onHttpRequestComplete(e){ }; function processHandler(data){ console.log(data); }; function errorHandler(data){ }; xmlHttp.send("http://","","post","text"); 2018-02-02 添加评论 免费帖 --> 分享 微博 QZONE ...

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

157. CharacterController move移动 报错_setWalkDirection [ 70%]

... Uncaught TypeError: Qt[a[((a[(A >> 2)] + 16) >> 2)]] is not a function     at Object.btKinematicCharacterController_setWalkDirection (laya.physics3D.js:1)     at CharacterController.move (laya.d3.js:4517)     at MasterMoveRotate.onUpdate (bundle.js:1853)     at Scene3D._updateSc...

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

158. 小程序分享问题 [ 70%]

...序 但是分享功能加不进去 网上都说 Page({ onShareAppMessage: function () { } }) 这样就行了 但是我这边提示 Page is not defined ReferenceError: Page is not defined 我要是单独写 onShareAppMessage: function () { } 他就提示 onShareAppMessage is not defined 2018-04-11 ...

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

159. laya.utils.Base64Tool_API3.0 [ 70%]

...g reghead decode encode init isBase64String Legend Object literal Variable Function Type alias Class Class with type parameter Static property Static method Enumeration Interface

来源: Laya3.0_api 发布时间: 20231115

160. as3的类里定义的字段编译后会被注释 [ 70%]

...据类 public class Demo { public var a:int; public var b:String; public function Demo() { } }通过编译后会变成下面的代码class Demo{ constructor (){ //this.a=0; //this.b=null; } }这里字段a和b在编译后会被注释掉,只有初始化的时候给a和b赋值,编译后的代码才...

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