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

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

61. UI-RefreshList [ 68%]

....refreshList.array = data; // 添加事件监听 this.refreshList.on(Event.MOUSE_UP, this, this.stageOnMouseUp); this.refreshList.on(Event.MOUSE_OUT, this, this.stageOnMouseUp); //游戏逻辑关联引擎的停止滚动接口 this.refreshList.scrollBar.stopMoveLimit = this.scrollBarIsStopBind.bind(t...

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

62. 如何能监听到TouchStart和TouchEnd事件 [ 67%]

... 提交 2 个回复 189*****192 赞同来自: Sean8023 Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); Laya.stage.on(Event.MOUSE_DOWN, this, onApeRelease); 通过 Event  类型 监听动作  class Event {         /** 一个空的 Event 对象。用于事件派发中转使用。*/    ...

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

63. 3D模型旋转问题,鼠标移动之后,根据按下移动的X坐标差值判断左右旋转,但是会越转越快,请问是什么问题? [ 67%]

...s.rotate(vec); } }   监听的鼠标移动事件 Laya.stage.on(Laya.Event.MOUSE_UP,this,this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_DOWN,this,this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE,this,this.mouseMove);   private mouseDown():void{ let mX:number = Laya.stage.mouseX; this.lastMouseX ...

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

64. 射线检测-放置物体 [ 66%]

...et = new Laya.Vector3(0, 0.25, 0); //鼠标事件 Laya.stage.on(Laya.Event.MOUSE_UP, this, function () { if (_outHitInfo.distance !== -1) { var sphere = scene.addChild(new Laya.MeshSprite3D(new Laya.SphereMesh(0.25, 16, 16))); var mat = new Laya.StandardMaterial(); mat.diffuseTexture = Laya.Texture2...

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

65. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 66%]

...on(Event.MOUSE_DOWN, this, mouseDown);         Laya.stage.on(Event.MOUSE_UP, this, mouseUp);     })(); //创建地图     function createMap()     {         //创建地图对象         tiledMap = new TiledMap();         //创建Rectangle实例,视口区...

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

66. 射线一直无法获取物体 [ 65%]

...ya.Physics.rayCast(ray, hit, 1000);     }     Laya.stage.on(Laya.Event.MOUSE_UP, this, function () {         var str = "";         if (!hit.sprite3D) {             str = "点击选取的几何体";         }else{             str = hit.sprite3D.name + "  ";         } ...

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

67. 怎样获取父类? [ 65%]

... function TipsView(params) { TipsView.super(this); this.sure.on(Laya.Event.MOUSE_UP,this,onSure); function onSure(params) { } } Laya.class(TipsView,"TipsView",TipsViewUI); return TipsView; })();   2017-10-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...

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

68. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 65%]

...on(Event.MOUSE_DOWN, this, mouseDown);         Laya.stage.on(Event.MOUSE_UP, this, mouseUp);     })(); //创建地图     function createMap()     {         //创建地图对象         tiledMap = new TiledMap();         //创建Rectangle实例,视口区...

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

69. 感觉实例之间是关联的,求指教。(已解决) [ 64%]

...e) { this.imag= img; this.imageName=tempImageName; this.imag.on(Laya.Event.MOUSE_UP, this, this.hit); //this.img.on(Laya.Event.) } var _proto = Poker.prototype; _proto.show = function () { this.imag.y = 50; } _proto.hit = function () { if ( this.imag.y == 50) { this.imag.y = 150; } else if(this.imag...

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

70. laya.ui里的tag不能赋值使用? [ 64%]

...能赋值sh使用吗?     masterbtn.tag = 0; masterbtn.on(Laya.Event.MOUSE_UP,this,this.onItemMaster); _proto.onItemMaster = function(params){ var btn = params.currentTarget; console.log("----------------------- ",btn.tag);//我赋值是0,但这里调用获取是2?? } 2017-11-20 添加评...

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