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

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

201. hitTestPrior点击穿透 [ 68%]

...phics.drawRect(0,0,300,300,"#FFFF00"); sp.size(100,100); sp.on(Event.CLICK,this,onClickSp); Laya.stage.addChild(sp); var spchild:Sprite=new Sprite(); spchild.graphics.drawRect(0,0,200,200,"#FF0000"); spchild.size(200,200); spchild.on(Event.CLICK,this,onClickSpChild); sp.addChild(spchild); } private ...

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

202. 【Laya2.1BUG】 给view设置runtime后,类型是any [ 68%]

...:if(ProjectSetting.codeType==0){ imports+=" import "+lib+";\n"; }else if(this.projectSetting.codeType==1&&lib.lastIndexOf(".ts")==lib.length-3){ libName=lib.substring(lib.lastIndexOf("/")+1,lib.length); if(libName.lastIndexOf(".")>=0){ libName=libName.substring(0,libName.lastIndexOf("."...

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

203. 自己画的view不支持鼠标点击吗? [ 68%]

...1=new View(); btn_1.graphics.drawPath(0, 0, path, {fillStyle: "#123456"}); this.addChild(btn_1); btn_1.mouseEnabled=true; btn_1.on(Event.MOUSE_DOWN, this, onClickBt1);     不管怎么点,在这个点击方法里面是不会执行的  2018-07-09 添加评论 免费帖 --> 分享 微博 QZONE ...

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

204. 加载不同域名下的单个图片 会重复加载两次,导致无法显示 [ 68%]

...+"image/loading.jpg", ]; Laya.loader.load(_silentLoadArray, Handler.create(this, gameStart));   var gameStart = function(){     var loading = new LoadingPage();(loading页面)     //加载完成 进入主界面     loading.onComplete = loadHome;     //开始加载     loading.start(ma...

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

205. 小程序开放域相关 [ 67%]

... Laya.stage.event(Event.MOUSE_DOWN); //                    this.rankView.list["_content"].event(Event.MOUSE_DOWN,null);                 }             } //                         function showRank(str:String = ""):void{               ...

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

206. 为什么不能加载多个模型 [ 67%]

...Scene_layabox/Library/unity default resources-Quad.lm",Laya.Handler.create(this,this.onCreateComplete)); Laya.loader.create("LayaScene_layabox/Library/unity default resources-Capsule.lm",Laya.Handler.create(this,this.onCreateComplete)); private onCreateComplete():void { var mesh:Laya.Mesh = Laya.loa...

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

207. TypeError: ele.render is not a function [ 67%]

...序报错window.focus is not a function 调用动画结束on方法,报错this.zombieAnimator.on is not a function laya加载unity插件导出的场景 physics3D is not a function 鼠标自定义样式官方有支持吗,Laya.Mouse.hide()会报Uncaught TypeError: Cannot read property 'cursor' of u...

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

208. 最新版本绘制100x100个sprite ios不能显示 [ 67%]

...制100x100个sprite ios不能显示 /* 游戏地图 */ function GameMap(){ this.MapRowNum = 100; this.MapColNum = 100; GameMap.super(this); this.init(); } Laya.class(GameMap, "GameMap", laya.display.Sprite); var _proto = GameMap.prototype; _proto.init = function(){ var boxSp = new laya.display.Sprit...

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

209. 修复开放数据域组件WXOpenDataViewer鼠标不能拖动的问题 [ 67%]

...地方,转换成全局坐标             var p: Laya.Point = this.localToGlobal(new Laya.Point());             mat.translate(p.x, p.y);             var stage: Laya.Stage = Laya.stage;              mat.scale(stage._canvasTransform.getScaleX() * this....

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

210. sprite点击事件 位置便宜 [ 67%]

... Laya.stage.addChild(rect); //增加鼠标事件 rect.on(Event.MOUSE_DOWN, this, mouseHandler); rect.on(Event.MOUSE_UP, this, mouseHandler); rect.on(Event.CLICK, this, mouseHandler); rect.on(Event.RIGHT_MOUSE_DOWN, this, mouseHandler); rect.on(Event.RIGHT_MOUSE_UP, this, mouseHandler); rect.on(Event...

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