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

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

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

...可 this.jumpCountMax = 2; //下落变量 this.vy = 0; //下落速度 this.downSpeed = 3; //最大下路值 this.maxVy = 32; Player.__super.call(this); //这里我们强制设置一下 玩家的宽度和高度 this.width = 96; this.height = 96; this.init(); } //玩家动作 //跑 Player.RUN = "playe...

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

322. 组件装饰器说明 · LayaAir3.0文档 · LAYABOX [ 28%]

...stEnum { A, B, C }; //字符串形式的枚举 enum Direction { Up = 'UP', Down = 'DOWN', Left = 'LEFT', Right = 'RIGHT' }; @regClass() export class Script extends Laya.Script { @property(Number)//数字类型,等价于{ type : "number" } num : number; @property(String)//单行字符串文本类...

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

323. 动画不显示 [ 27%]

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

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

...ayer); //监听 按下 弹起 事件 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

325. UI-RefreshList [ 27%]

...录鼠标按下状态,true为已按下,用于状态判断 */ this.mouseDown=false; /** 初始化场景 * */ /** 关联引擎的滚动限制接口 */ /**列表的鼠标事件处理,常用于处理单元格上的点击事件等 */ /** 列表单元格上的鼠标抬起时处理恢复逻辑 */ /**...

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

326. 基础文本 · LayaAir3.0文档 · LAYABOX [ 26%]

...or = "#fa1515"; this.txt.overflow = "scroll"; this.txt.on(Laya.Event.MOUSE_DOWN, this, this.startScrollText); } /* 开始滚动文本 */ startScrollText() { prevX = this.txt.mouseX; prevY = this.txt.mouseY; Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.on(Laya.Event.MOUSE_U...

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

327. 3D中摄像机绕物体旋转该如何实现? [ 26%]

...e(this.transform.position, this.AroundPos); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.mouseWheel) } onUpdate(): void ...

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

328. 官方案例里摄像机绕物体旋转脚本的问题 [ 25%]

...e(this.transform.position, this.AroundPos); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.mouseWheel) } onUpdate(): void ...

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

329. TiledMap地图 · LayaAir3.0文档 · LAYABOX [ 24%]

...安装 打开官方首页(http://www.mapeditor.org/)后,直接点击`DownLoad at itch.io`按钮进入下载链接(https://thorbjorn.itch.io/tiled)。 (图2-1) 如果官网改版,也可以直接从下载页 http://www.mapeditor.org/download.html 找到下载链接。 找到对应的...

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

330. 用LayaAir引擎解析Tiled Map地图(JavaScript-2D进阶篇(JS)-扩展模块) [ 24%]

...http://www.mapeditor.org/](http://www.mapeditor.org/))后,直接点击`DownLoad at itch.io`按钮进入下载链接([https://thorbjorn.itch.io/tiled](https://thorbjorn.itch.io/tiled))。如果官网改版,也可以直接从下载页[http://www.mapeditor.org/download.html](http://www.mapedi...

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