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

大约有 210 项符合查询结果, 库内数据总量为 31,722 项。 (搜索耗时: 0.0059 秒)

181. laya.events.Event [ 39%]

...= message[static] 定义 message 事件对象的 type 属性值。Event  MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event  MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event  MOUSE_OUT : String = mouseo...

来源: Laya2.0_api 发布时间: 20190513

182. runTime使用(ActionScript-IDE篇(AS3)-组件化开发相关) [ 38%]

... //添加鼠标按下事件侦听。按时时缩小按钮。 this.on(Event.MOUSE_DOWN,this,scaleSmall); //添加鼠标抬起事件侦听。抬起时还原按钮。 this.on(Event.MOUSE_UP,this, scaleBig); //添加鼠标离开事件侦听。离开时还原按钮。 this.on(Event.MOUSE_OUT,this, scaleB...

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

183. laya.events.Event [ 38%]

...= message[static] 定义 message 事件对象的 type 属性值。Event  MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event  MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event  MOUSE_OUT : String = mouseo...

来源: laya_api 发布时间: 20170929

184. laya.ui.UIEvent [ 36%]

...g = message[static] 定义 message 事件对象的 type 属性值。Event MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseout[s...

来源: Laya2.0_api 发布时间: 20190513

185. laya.ui.UIEvent [ 35%]

...g = message[static] 定义 message 事件对象的 type 属性值。Event MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseout[s...

来源: laya_api 发布时间: 20170929

186. [LayaAirIDE3]2d相机打包后问题 [ 34%]

... const owner = this.owner as Laya.Sprite;         owner.on(Laya.Event.MOUSE_DOWN, this, this.onTouchStart);         Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onTouchMove);         Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onTouchEnd);         Laya.stage.on(Laya.Event.MOUSE_...

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

187. rigidBody.applyForce 物体不会移动 [ 33%]

...e.width / 5) * 2; Laya.stage.addChild(this.text); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouseDown); let building: Laya.Sprite3D = scene.getChildByName( "Buliding" ) as Laya.Sprite3D; let moveArea: Laya.MeshSprite3D = building.getChildByName( "fence15" ) as Laya.MeshSprite3D; console.log(...

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

188. 2.x引擎项目升级说明 · LayaAir3.4 · 引擎文档 · LAYABOX [ 31%]

...3D正确遮挡。3.3 新增 MOUSE_DRAG和MOUSE_DRAG_END3.4 删除了RIGHT_MOUSE_DOWN和RIGHT_MOUSE_UP3.5 事件汇总4、LayaAir3.0 组件系统修改5、Runtime的使用差异6、2D动画2.0引擎开发者使用3.0的差异汇总 Author:谷主 && Charley [!Note] 本篇文档仅适用3.0...

来源: Laya3.0_文档 发布时间: 20251010

189. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 29%]

...his.player); //监听 按下 弹起 事件 Laya.stage.on(laya.events.Event.MOUSE_DOWN, this, this.onMouseDown); //创建一个帧循环处理函数 Laya.timer.frameLoop(1, this, this.onLoop); } _proto.onLoop = function(){ // 检测人物是否踩在地板上面了 for(var i = this.mapFloor.numChildr...

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

190. 动画不显示 [ 29%]

...ent.RESIZE,this,on_stage_resize);             Laya.stage.on(Event.MOUSE_DOWN,this,on_map_mousedown);             Laya.timer.frameLoop(1,this,calcMoving);         }         private function on_stage_resize():void         {             if (this.m_IsMoving) ...

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