大约有 300 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0044 秒)
Laya_社区(79) Laya3.0_api(62) Laya2.0_api(58) laya_api(54) Laya2.0_文档(19) Laya2.0_示例(11) Laya_示例(11) Laya3.0_文档(6)
...function __moveHandler():void { var p:Point = toLocal(new Point(Laya.stage.mouseX, Laya.stage.mouseY), _colorSpr); var cir:Sprite = new Sprite(); cir.graphics.drawCircle(0, 0, 15, "#fff"); cir.pos(p.x, p.y); cir.blendMode = "destination-out"; _colorSpr.addChild(cir); _htmlCanvas = _colorSpr.drawToCa...
来源: Laya_社区 发布时间: 20180302
..."bullet", this.bullet.create, this.bullet); flyer.pos(Laya.stage.mouseX, Laya.stage.mouseY); this._gameBox.addChild(flyer); this._chains.points="118,99,158,70,218,99,258,70,318,99,358,70,418,99,458,70,518,99,558,70"; } /**开始游戏,通过激活本脚本方式开始游戏*/ s...
来源: Laya_社区 发布时间: 20181128
... Laya.Point = Laya.Point.create(); pos.x = Laya.MouseManager.instance.mouseX; 鼠标的位置转成了图片下的本地坐标,我所使用的代码是 selfNode.globalToLocal(pos);// 把stage的全局坐标转换为本地坐标。 我已经发布了oppo小游戏可以直接进行调试 ...
来源: Laya_社区 发布时间: 20200108
...间生成射线 point.elements[0] = Laya.MouseManager.instance.mouseX; point.elements[1] = Laya.MouseManager.instance.mouseY; camera.viewportPointToRay(point, ray); //射线检测获取所有检测碰撞到的物体 Laya.Physics.rayCast(ray...
来源: Laya_社区 发布时间: 20170915
...并保存 this.moveLastPos = e.target.globalToLocal(new Point(Laya.stage.mouseX, Laya.stage.mouseY)); //鼠标按下的时候进行移动侦听 e.target.on(Event.MOUSE_MOVE, this, this.onItemBoxMouseMove, [e.target, index]); } } if (e.type == Event.MOUSE_UP) { this.mouseDown = false; this.itemOnMous...
来源: Laya2.0_示例 发布时间: 20241119
...ove(){ // 始终保持主角和鼠标位置一致 this.hero.pos(Laya.stage.mouseX,Laya.stage.mouseY); } function createEnemy(num){ for(var i = 0; i < num; i++) { // 随机出现敌人 var r = Math.random(); // 根据随机数,随机敌人 var type = r<0.7?0:r<0.95?1:2; // 创建敌人 // ...
来源: Laya_社区 发布时间: 20170525
...e); function mousemove(e) { drawLayer.graphics.drawCircle(e.target.mouseX,e.target.mouseY,20,"#ffffff") drawLayer.cacheAsBitmap; } 我的思路是每一次move都把对应的圆形区域绘制到一个容器上,这样一来drawcall就不会一直增加了。 但是在laya中...
来源: Laya_社区 发布时间: 20160725
..., this.tempV, this.tempV1) this.transform.position = this.tempV1; this.lastMouseX = Laya.stage.mouseX; this.lastMouseY = Laya.stage.mouseY; } //记录上一次手机触摸位置判断用户是在左放大还是缩小手势 private oldPosition1: Vector3 = new Vector3(); private oldPosition2: Vector3 ...
来源: Laya_社区 发布时间: 20170714
..., this.tempV, this.tempV1) this.transform.position = this.tempV1; this.lastMouseX = Laya.stage.mouseX; this.lastMouseY = Laya.stage.mouseY; } //记录上一次手机触摸位置判断用户是在左放大还是缩小手势 private oldPosition1: Vector3 = new Vector3(); private oldPosition2: Vector3 ...
来源: Laya_社区 发布时间: 20190224
...件才能获取坐标 但是如果我一直按着不动就无法触发了 mouseXmouseY只能获取一个点的坐标 2017-12-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 wudi199553 赞同来自: private onMou...
来源: Laya_社区 发布时间: 20171201