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

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

21. 多线程worker(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 69%]

...e worker. ``` 新建一个my_task.js文件,代码如下: ```typescript self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get",...

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

22. 多线程worker(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 68%]

... worker. ``` ​ 新建一个my_task.js文件,代码如下 ```javascript self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get",...

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

23. 提示“AtlasResourceManager:Dispose the inner Atlas。” [ 67%]

...); Laya.timer.loop(150, this, showframe); })(); function showframe() { var self = this; var xhr = new Laya.HttpRequest(); xhr.once(Laya.Event.COMPLETE,this,completeHandler); xhr.once(Laya.Event.ERROR,this,errorHandler); xhr.send("res/monkey2.png","","get","arraybuffer"); function completeHandler(dat...

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

24. box2d动态创建绑定多个关节报错 Node:the component is singleton,can't add the second one. [ 66%]

...rigBody做距离关系绑定 代码片段:  onTriggerEnter(other: any, self: any, contact: any) {  let pointes = contact.getHitInfo().points;  let potSelf = new Laya.Point(pointes[0].x, pointes[0].y); let potOther = new Laya.Point(pointes[0].x, pointes[0].y); self.owner.globalToLocal(potSelf);...

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

25. 使用js压缩工具报错 [ 65%]

..._package(name,{}); var ins=Laya.__internals; var a=ins[name]=ins[name] || {self:name}; if(_super) { var supers=_super.split(','); a.extend=[]; for(var i=0;i<supers.length;i++){ var nm=supers[i]; ins[nm]=ins[nm] || {self:nm}; a.extend.push(ins[nm]); } } var o=window,words=name.split('.'); for(var ...

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

26. 两个物体 ,如果在update里修改其中一个物体的rotationEuler,会触发另一个物体的onTriggerEnter回调 [ 65%]

...es = "remote/model/res/Conventional/man_1.lh" constructor() { super(); let self = this; Util3d.loadRes( [ this.sMapRes, this.sBullRes, this.sEnemyRes ], function (bIsFinish) { if (bIsFinish) { self.onResFinish(); } } ) } onResFinish() { let pNewScene = <Laya.Scene3D>Util3d.getRes(this.sMapRes,...

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

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

...     onEnable() {             }      onTriggerEnter(other: any, self: any, contact: any): void {     //搜索黏贴在圆环上     } onUpdate(): void {     }  onDisable(): void {     Laya.Pool.recover("friut",this.owner); } } 附件 : --> FruitMaster.zip 2022-04-13 添加评论 ...

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

28. 预制体添加刚体后,和其它刚体碰撞后不能修改角度和位置 [ 64%]

...和其它刚体碰撞后不能修改角度和位置  onTriggerEnter(other,self,contact)     {         var n=this.owner.rotation;         if(other.label === "heng"){             console.log("角度"+this.owner.rotation);             this.owner.rotation=...

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

29. 怎么集成导入mqtt.js到laya中 [ 62%]

...vate client: Paho.MQTT.Client; private message: Paho.MQTT.Message; private self = this; public constructor() { public connect(url, port, client): void { //初始化 this.client = new Paho.MQTT.Client(url, Number(port), client); // set callback handlers //连接消失 收到消息 this.client.onConne...

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

30. 请问如何加载base64的图片 [ 61%]

...inxu345050878 赞同来自: __proto.uploaderHandler=function (files) { var self=this; var file=files[0]; var reader=new FileReader(); reader.onload=function () { this.headIcon.loadImage(this.result); } reader.readAsDataURL(file); } 是这样显示的吗?我的为何也不显示,通过html的inpu...

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