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

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

181. 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

182. 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

183. 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

184. 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

185. rigidBody.applyForce 物体不会移动 [ 32%]

...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

186. 2.x引擎项目升级指南 · LayaAir3.0文档 · 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_文档 发布时间: 20230406

187. 【简单跑酷--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

188. 动画不显示 [ 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

189. 【简单跑酷--JS版】---Lv.6 终篇 [ 29%]

...his.player); //监听 按下 弹起 事件 Laya.stage.on(laya.events.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(laya.events.Event.MOUSE_UP, this, this.onMouseUp); //创建一个帧循环处理函数 Laya.timer.frameLoop(1, this, this.onLoop); } _proto.onLoop = function(){ // 检测人...

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

190. UI-RefreshList [ 28%]

...; } onListMouse(e, index){ console.log(e.target.name); if (e.type == Event.MOUSE_DOWN) { this.mouseDown = true; //如果单元格已经展开,则先恢复 if (this.itemIsOpen) { this.itemIsOpen = false; this.itemOpenId = -1; Tween.to(this.openedItem, { "x": 0 }, 500, null, Handler.create(this, () ...

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