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

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

531. native下不支持大图合集吗? [ 70%]

...8-07-30 14:56 请问需要怎么开启吗,默认代码是被return了的 if (Render.isConchApp){ if (!Render.isConchWebGL){ RunDriver.skinAniSprite=function (){ var tSkinSprite=new SkinMesh() return tSkinSprite; } WebGL.expandContext(); return false; } Laya_Aaron • 2018-07-30 15:45 这个不是...

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

532. laya 1.0 源码中 RunDriver.as里measureText的问题 [ 70%]

...tion(txt:String, font:String):* { var isChinese:Boolean = hanzi.test(txt); if (isChinese && fontMap[font]) { return fontMap[font]; } var ctx:* = Browser.context; ctx.font = font; var r:* = ctx.measureText(txt); if (isChinese) fontMap[font] = r; return r; }相关源码如上所示 因为最...

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

533. 微信小游戏自定义震动效果 [ 70%]

...       wx.vibrateShort();         index++;         if (index > count) {                 Laya.timer.clearAll(obj);         }     }); }   JS代码: /** * 震动时间 * @param time  毫秒数 */ function vibrate(time){  let count=time/...

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

534. 其他引擎的Demo-Example_21 [ 70%]

...colorCount++ % colors.length]; path.length = 0; } function onMouseMove() { if (!isDown) return; path.push(Laya.stage.mouseX); path.push(Laya.stage.mouseY); } function onMouseUp() { isDown = false; canvasGraphics.drawPoly(0, 0, path.concat(), color); } function animate() { liveGraphics.clear(); liveG...

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

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

...复正常。   示例代码: zip.forEach(function (id, name, dir, sz) { if (!dir) { var buf = zip.readFile(id);//执行这一步时界面就会卡住 var fid = window["appcache"].hashstr('/' + name); if (window["appcache"].updateFile(fid, 0, buf, false)) { console.log("更新缓存文件" + fid +...

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

536. 关于下拉列表的选择触发 [ 70%]

....small_map.selectedLabel Laya.map_small_c = e } function onSelect_big(e) { if (e != 0) { if (Laya.keys > 0) { Laya.big_switch = 0 Laya.map_big = e Laya.maptype = "big" this.small_map.selectedIndex = 0 this.now_map.text = "当前地图:" + this.big_map.selectedLabel } else { var dia1 = new loadi...

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

537. 刮刮卡效果实现 [ 70%]

...actionArea); interactionArea.graphics.clear(); } function onMouseMove(e) { if(mouseX!=0){ if(Math.abs(mouseX-ape.mouseX)>= 360){ //滑动超过多少距离 自动开奖 ape.visible = false; mouseX = ape.mouseX; } }else{ mouseX = ape.mouseX; } interactionArea.graphics.drawCircle(ape.mouseX, ape.mo...

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

538. 关闭指定定时器timer [ 70%]

...量变化 function roundTurnChange(type){ //减速阶段 roundTurn-=0.05; if(roundTurn<=0.3){ console.log("*************************************************88"); Laya.timer.clear(this.tlate,round); } return roundTurn; } 匿名用户 • 2018-08-11 15:41 Laya.timer.clear(this,round);也...

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

539. 在微信web开发者工具里勾选ES6转ES5然后window对象报错 [ 70%]

...模一样,请问这问题有解决方案吗?这是我的game.js代码 if ((typeof swan !== 'undefined') && (typeof swanGlobal !== 'undefined')) {     require("swan-game-adapter.js");     require("libs/laya.bdmini.js"); } else if (typeof wx!=="undefined") {     require("weapp-...

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

540. 请问如何获取触屏上两个或者更多位置的坐标 [ 70%]

...         var touches: Array<any> = e.touches;             if (touches && touches.length == 2) {                 this.preRadian = Math.atan2(                     touches[0].stageY - touches[1].stageY,                     touches[0].stageX - touches[...

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