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

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

71. 精灵添加名称 [ 84%]

...   sp=new Sprite();          sp.name = i.toString();         console.log(sp.name);         sp = project.drawsomething(20, 20+60*i, "#eeb9b3");         sp.on(Event.CLICK,this, onsp);         Laya.stage.addChild(sp);   }   private function onsp(e:Event){         ...

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

72. 两个移动的简单物体 onTriggerEnter 无法触发 (有悬赏) [ 84%]

...方法为虚方法,使用时重写覆盖即可 */ onTriggerEnter(other){ console.log("onTriggerEnter"); };  onTriggerStay(other){ console.log("onTriggerStay"); };  onCollisionEnter(other){ console.log("onCollisionEnter"); };  onCollisionStay(collision){ console.log("onCollisionStay"); } } 附...

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

73. 网络和格式-XML [ 84%]

... xmlValue = "item aitem bsomethings..."; proessXML(xmlValueContainsError); console.log("\n"); proessXML(xmlValue); } function proessXML(source) { try { var xml = Utils.parseXMLFromString(source); } catch (e) { console.log(e.massage); return; } printDirectChildren(xml); } function printDirectChildren...

来源: Laya_示例 发布时间: 20240930

74. 微信小游戏利用开放域好友关系链做排行榜 [ 84%]

...onLoaded));     }      private onLoaded(): void {         console.log("onLoaded ......");         GameBootstrap.wxPostMessage({             cmd:1,             text: 'hello',             year: (new Date()).getFullYear()         },nu...

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

75. 关于缓动函数from的一些问题记录 [ 84%]

...Handler(this,this.onEaseComplete),1,null,true); function onEaseComplete(){ console.log("ease complete"); Laya.stage.addChild(letterText); } ``` 以上的代码主要存在三个问题: 1. from()中的duration和delay都是以毫秒为单位,所以3,1想表示3秒,1秒需要使用3000,1000作为参...

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

76. 使用getChildByName()无法得到子节点对象 [ 83%]

...    cell._childs[1].text=data.listNumber.text;             console.log(index)             //根据子节点的名字listNumber,获取子节点对象。             var listNumber1 = cell.getChildByName("text");             // var text = cell.getC...

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

77. iOS-App内购(TypeScript-LayaNative原生服务-LayaNative进阶) [ 83%]

...(jsonString) {      var pJson = JSON.parse(jsonString);      console.log("code:"+ pJson .code);      console.log("product_id:"+ pJson.product_id);      console.log("amount:"+ pJson.amount);      console.log("order_id:"+ pJson.order_id);      console.log("desc:"...

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

78. Ts简单对象池 [ 83%]

...化则必须保证池中最少存在1个 if (this.m_ObjectPoolDic[key]){ console.log("初始化有误,该值已经有对应的 对象池了"); } else{ this.m_ObjectPoolDic[key]=new QueueT<Laya.MeshSprite3D>(); this.m_ObjectPoolDic[key].push(MeshSprite); } }  //按照编号取出对应对象...

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

79. LayaAirIDE 2.0 laya.wxmini.js 第3行报错! 创建3D项目(TypeScript),导出微信小游戏,选择了JS混淆,崩溃在 laya.wxmini.js 第3行,错误如下 [ 83%]

...libs = )).push({ f: i, i: e }); }), window.layalib(function (i, e, t) {   console 窗口报错如下: ------------------------------------------ WAGame.js:3 gameThirdScriptErrorCannot assign to read only property 'window' of object '#<Window>' TypeError: Cannot assign to read only property ...

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

80. linearVelocity 获取的线速度不正确 [ 83%]

...        this.rigidbody.linearVelocity = vectory;         console.log("施加的线速度:");         console.log(vectory);         console.log("获取得到的线速度:");         console.log(this.rigidbody.linearVelocity);     附件 : --> 2020-03-30...

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