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

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

61. 屏幕截屏问题 [ 63%]

屏幕截屏问题 Offline.prototype.setSave=function(){ if( window.conch ) { window.conch.captureScreen(function(arrayBuff,width,height){ window.image = window.document.createElement("img"); window.image.putImageData(arrayBuff,width,height); }) } }     E/LayaBox: >>>>>>>>...

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

62. getPixels中的bug [ 62%]

...换了,麻烦官方下一版修复下           var uv=Array.prototype.slice.call(this.uv);   2019-06-25 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 感谢您的反馈,已经改了,下个版本就好了,你改的是对的。 2019-06-25 0 0 分享 微博 QZONE 微信 ...

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

63. Laya2.0引包问题!!! [ 62%]

...ls'; export class BaseSprite extends fairygui.GComponent TypeError: Object prototype may only be an Object or null: undefined preload.js:55 at setPrototypeOf (<anonymous>) 2019-02-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...

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

64. 反射实例中的属性 [ 62%]

...Laya.ClassUtils.regClass("sp", Reflect); Laya.ClassUtils.getInstance('sp').prototype.name } } new GameMain(); class Reflect { public name: string = "mmmmm"; constructor() { } public write(): void { console.log("qqqqqqqq"); } } 2018-10-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

65. 如何根据一个类的对象获取类名 [ 61%]

... 赞同来自: 根据Class获取类名(String)的  var arr:Array = class.prototype.__className.split("."); arr[arr.length-1]就是String类型的类名 2017-08-15 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 132*****180 相关问题 ...

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

66. 写了个边缘光的自定义shader,有很多问题,帮忙看一下 [ 61%]

...al", Laya.BaseMaterial); CustomMaterial.DIFFUSETEXTURE = 1; CustomMaterial.prototype.getDiffuseTexture = function () { return this._getTexture(CustomMaterial.DIFFUSETEXTURE); } CustomMaterial.prototype.setDiffuseTexture = function (value) { this._setTexture(CustomMaterial.DIFFUSETEXTURE,value); }  ...

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

67. Dialog 关闭效果无效 [ 61%]

...is); } Laya.class(CommonDlg, "CommonDlg", _super); var _proto_ = CommonDlg.prototype; _proto_.closeEffect = Laya.Handler.create(null, this.onCloseEffect, null, true); _proto_.onCloseEffect = function () { console.log("in on close effect") this.close(); } return CommonDlg; })(Laya.Dialog);console.log...

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

68. Laya.loader.create 进度回调函数执行两次!!! [ 60%]

...3DComplete),Laya.Handler.create(this,this.onProgress,null,false)); Manager.prototype.onProgress = function(value) { console.log("value=="+Math.floor(value*100)+"%"); }   输出结果: 0.19186599730944645 0.5251993306427798 1 0.5002049180327869 0.5626793032786885 0.6251536885245902 0.6876280737704...

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

69. 如何获取一个3D模型的长宽高? [ 60%]

...08-11 2 1 分享 微博 QZONE 微信 McGee 赞同来自: Laya.MeshSprite3D.prototype.meshRenderer,bounds 2019-07-08 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 sfsmmc 相关问题 请问有没有方法能够获取“鼠标是否处于...

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

70. 如何用ts对引擎类进行方法扩展 [ 60%]

...clare global { interface Number { thousandsSeperator(): String; } } Number.prototype.thousandsSeperator = function(): string { return Number(this).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ','); } export {};  我用同样的方法尝试了,但是行不通。   请问我的ts 3d项目中,我...

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