大约有 352 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0065 秒)
Laya_社区(234) Laya2.0_文档(41) Laya3.0_文档(22) Laya2.0_示例(15) Laya_示例(14) Laya3.0_api(10) laya_api(8) Laya2.0_api(8)
...可 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
...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
...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
...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
...录鼠标按下状态,true为已按下,用于状态判断 */ this.mouseDown=false; /** 初始化场景 * */ /** 关联引擎的滚动限制接口 */ /**列表的鼠标事件处理,常用于处理单元格上的点击事件等 */ /** 列表单元格上的鼠标抬起时处理恢复逻辑 */ /**...
来源: Laya2.0_示例 发布时间: 20241118
...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
...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
...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
...安装 打开官方首页(http://www.mapeditor.org/)后,直接点击`DownLoad at itch.io`按钮进入下载链接(https://thorbjorn.itch.io/tiled)。 (图2-1) 如果官网改版,也可以直接从下载页 http://www.mapeditor.org/download.html 找到下载链接。 找到对应的...
来源: Laya3.0_文档 发布时间: 20230303
...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