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

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

1241. Graphics.drawLines设置x轴y轴的初始位置的参数失效 [ 78%]

...个参数换成任意数字,画出的折线位置不会有任何变动(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var WebGL = Laya.WebGL; var sp; (function() { //初始化舞台 Laya.init(500, 300, WebGL); drawSomething(); })(); function drawSomething() { sp = new Sprite(); Lay...

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

1242. 射线一直无法获取物体 [ 78%]

...D.load("./test.lh"));     qb_pet.once(Laya.Event.HIERARCHY_LOADED, this, function(){         qb_pet.addComponent(Laya.SphereCollider);     });   设置射线:    Laya.timer.frameLoop(1, null, checkHit);     var hit = new Laya.RaycastHit();     var point = new Laya.Vector2();     v...

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

1243. 2D物理-碰撞事件与传感器 [ 78%]

...r; private var bodys: Array = []; private var touching: Array = []; public function Physics_CollisionEvent() { Laya.Config.isAntialias = true; Laya.init(1200, 700, WebGL); Stat.show(); Physics.enable(); PhysicsDebugDraw.enable(); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIG...

来源: Laya2.0_示例 发布时间: 20241126

1244. app构建后在真机中运行报错 [ 78%]

...码: *模板,预制件 */ //class laya.components.Prefab var Prefab=(function(){     function Prefab(){         /**@private */         this.json=null;     }      __class(Prefab,'laya.components.Prefab');     var __proto=Prefab.prototype;     /**     *通...

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

1245. Tween回调方法里如何带参数? [ 78%]

...? Tween.to(sp, {x:_x, y:_y, alpha:1}, 1000, null, Handler.create(This, function(){     sp.destroy(); }), 500); 这样写sp并不能被销毁,请问laya里沒有onCompleteParams方法吗? 2017-06-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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

1246. 图片使用pivotX参数后,再对图片添加遮罩会出现效果不对。 [ 78%]

...来自: 把引擎示例-2D-Sprite-遮罩-放大镜示例改为如下: (function() {     var Sprite = Laya.Sprite;     var Stage = Laya.Stage;     var Browser = Laya.Browser;     var Handler = Laya.Handler;     var WebGL = Laya.WebGL;     var maskSp;     var bg2;     (functi...

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

1247. 输入设备-指南针 [ 78%]

...ar directionIndicator:Sprite; private var firstTime:Boolean = true; public function InputDevice_Compass() { Laya.init(700, 1024, WebGL); Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.loader.load(compassImgPath, Handle...

来源: Laya2.0_示例 发布时间: 20241126

1248. 3d项目-unity添加物理组件 layanative2 打包android平台 报错 btCollisionObject undefined [ 78%]

...tand.alone.version/lib ... 3731:8) 10-15 16:43:46.702: I/LayaBox(3503): at Function.Utils3D._createNodeByJson (http://stand.alone.version/libs/laya.d3.js:14491:25) 10-15 16:43:46.702: I/LayaBox(3503): at Function.Utils3D._createNodeByJson (http://stand.alone.version/libs/laya.d3.js:14481:23) 10-15 1...

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

1249. TypeError: Cannot read property 'm_jointList' of null [ 78%]

...打出的APK 报apploader.js:4515 TypeError: addGlobalValueDefine is not a function TypeError: Laya.Browser.window.conch.setFontFaceFromBuffer is not a function Uncaught TypeError: Class constructor Component cannot be invoked without 'new' 关于graphics.drawTexture方法设置纹理报错TypeError...

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

1250. Laya.sprite.on 绑定事件传参数的问题 [ 78%]

Laya.sprite.on 绑定事件传参数的问题 on () method  public function on(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。 Parameters type:String ...

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