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

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

271. 关于3d的碰撞检测 [ 70%]

...碰撞器相交检测 Laya.Physics.rayCast(this.ray, this.outHitInfo, 0); console.log("x:" + rayOrigin.x + " y:" + rayOrigin.y + " z" + rayOrigin.z) this.phasorSpriter3D.begin(Laya.WebGLContext.LINES, LayaAir3D.camera); this.phasorSpriter3D.line(this._linePos, this._color, this.ray.origin, this._col...

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

272. laya生成的layaContainer div想用appendChild方法添加到某div下,但是针对sprite距离位置并没有变化 [ 70%]

...0, 500, WebGL);         Laya.stage.bgColor = "#ffffff";     console.log(Laya.Render._mainCanvas);     Laya.Render._mainCanvas.source.style.top = "50px";         this.setup();     const parent = document.getElementById("preview");     const child = document.g...

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

273. 屏幕适配-屏幕适配 [ 70%]

..." + "(" + modes[index] + ")"; } function onClick(e) { //输出坐标信息 console.log("mouse:", Laya.stage.mouseX, Laya.stage.mouseY); } function onResize() { //输出当前适配模式下的stage大小 console.log("size:", Laya.stage.width, Laya.stage.height); } })();module laya { import Sprite = ...

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

274. HTMLDivElement中图文混排怎么获取实际内容大小 [ 70%]

...MLDivElement(); imageHtml.innerHTML="<img src='res/image/1.png' />"; console.log("size: " + imageHtml.width + ", " + imageHtml.height); console.log("contextSize: " + imageHtml.contextWidth + ", " + imageHtml.contextHeight); Laya.stage.addChild(imageHtml);   上述代码在Laya中运行 正确...

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

275. 屏幕适配-屏幕适配 [ 70%]

...配模式" + "(" + modes[index] + ")"; } onClick(e) { //输出坐标信息 console.log("mouse:", Laya.stage.mouseX, Laya.stage.mouseY); } onResize() { //输出当前适配模式下的stage大小 console.log("size:", Laya.stage.width, Laya.stage.height); } } new SmartScale_T();module laya { import Sp...

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

276. 物理系统之FixedConstraint(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 69%]

...fixedConstraint.connectedBody.mass = mass+1; //输出当前约束所受力 console.log(this.fixedConstraint.currentForce); //输出当前约束所受的力矩 console.log(this.fixedConstraint.currentTorque); } } override public function onJointBreak() { console.log("break"); } ``` - 4.示例效果...

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

277. 仅在Android微信小游戏下图片错乱 [ 69%]

...nLoaded), null, Loader.IMAGE, 1, true, null, true) } static onLoaded(res){ console.log("public assets inited !!!!") console.log(Laya.loader.getRes("res/ui/share@atlas0.png"))//此处会报循环引用错误,也就Android小游戏会 this.sInited = true }   用的是fairygui,目前已经通过...

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

278. ZipFile类用readFile读取文件内容时,整个界面都会卡住 [ 69%]

...hstr('/' + name); if (window["appcache"].updateFile(fid, 0, buf, false)) { console.log("更新缓存文件" + fid + "成功"); } else { console.log("更新缓存文件" + fid + "失败"); } } }); zip.close();//执行这一步时界面恢复正常 2018-12-28 添加评论 免费帖 --> 分享 微博 Q...

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

279. 纹理截取后内存释放不了 [ 69%]

...awTexture(t, 0, 0); oriDBArr[i] = g; } private function onClear():void { console.log(Laya.loader.getRes(_url)); Loader.clearRes(_url,true); console.log(Laya.loader.getRes(_url)); } 将一个大图截成多个小图纹理以后,截出来纹理内存好像不能释放, 如果强行调用t.dest...

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

280. 关闭指定定时器timer [ 69%]

... }); //转动逻辑 function round(){ tlate.rotation+=roundTurnChange(1); console.log(tlate.rotation); } //转动变量变化 function roundTurnChange(type){ //减速阶段 roundTurn-=0.05; if(roundTurn<=0.3){ console.log("*************************************************88"); Laya.time...

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