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

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

31. laya.d3.component.hlod.HLOD_API3.0 [ 85%]

...Properties _extra _singleton owner runInEditor scriptPath Accessors awaked bounds destroyed enabled hideFlags id lodCullRateArray lodResource Methods _cloneTo _initialize _setOwner applyResource destroy hasHideFlag onAdded onAwake onDestroy onDisable onEnable onLateUpdate onPostRender onReset onStar...

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

32. FBX导出Index was outside the bounds of the array [ 84%]

FBX导出Index was outside the bounds of the array FBX导入Unity,版本Unity 2018.4.0f1. 再使用LayaAir3D Export Tool导出出现 Index was outside the bounds of the array.   附件是FBX文件   IndexOutOfRangeException: Index was outside the bounds of the array. p.a (UnityEngine.Mesh A_0,...

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

33. 龙骨skeleton鼠标点击区域的设置 [ 84%]

...以直接使用hitArea来设置龙骨动画的点击区域 首先通过getBounds获取龙骨动画的width和height(可以通过延迟timer来获取) 然后这是龙骨的hitArea(-width,-height,width,height) 参考示例: mArmature = mFactory.buildArmature(1); mArmature.play(0,true);...

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

34. laya.d3.core.SkinnedMeshRenderer [ 83%]

....<Sprite3D>[read-only] 用于蒙皮的骨骼。 SkinnedMeshRenderer bounds : Bounds[read-only] 获取包围盒,只读,不允许修改其值。 BaseRender castShadow : Boolean 获取是否产生阴影。 BaseRender enable : Boolean 获取是否可用。 BaseRender id : int[read-only] 获取...

来源: Laya2.0_api 发布时间: 20190513

35. 在开启webgl模式下,每次运行texture类的getPixels方法内存都会增加 [ 83%]

...nvas private cacheTexture: Laya.Texture init(){ let rect = this.img.getSelfBounds() this.img.pivot(Math.round(rect.width / 2), Math.round(rect.height / 2)) let bound = this.img.getBounds() this.cacheCanvas = this.img.drawToCanvas(Math.ceil(bound.width), Math.ceil(bound.height), Math.round(bound.widt...

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

36. 特效LOADED监听不到 [ 81%]

...ani.once(Laya.Event.LOADED,null,function(ani1){ console.log(ani1.getGraphicBounds()); }); 这样写的话监听不到 现在引擎支持下载功能吗??? 2017-06-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个...

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

37. 如何获取动画的长度? [ 81%]

...引擎示例获取的边界都是0, // 获取动画的边界信息 var bounds: Rectangle = ani.getGraphicBounds(); 2018-01-24 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 qian 赞同来自: https://ask.layabox...

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

38. 为什么获取不到getBounds()的width,height [ 81%]

为什么获取不到getBounds()的width,height 为什么我的playAction中获取不到动画的显示区域,用控制台输出都是0 还有this.body.pos(-bound.width / 2, -bound.height / 2);是动画里面的 feiji.pos(Laya.stage.mouseX, Laya.stage.mouseY);是鼠标监听事件 2个都是设...

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

39. 渲染队列排序问题,导致Alpha混合效果出错 [ 81%]

...ngth;         var renders=renderList.elements;         var boundFrustum=camera.boundFrustum;         var camPos=camera._transform.position;         for (var i=0;i < validCount;i++){             var render=renders ;             if (camera._is...

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

40. 怎么对动画进行毎帧侦听? [ 81%]

...aya.Event.COMPLETE, this, _OnComplete);   function _OnComplete() {   var bounds = ani.getGraphicBounds();   console.log(bounds.width);   console.log(bounds.height); } 这样的话获取动画宽高  还是只会取到第一帧宽高  并没有办法取到毎帧的宽高 2017-07-04 添加评论...

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