大约有 228 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0046 秒)
Laya3.0_api(61) Laya2.0_api(57) laya_api(53) Laya_社区(32) Laya2.0_文档(13) Laya3.0_文档(6) Laya2.0_示例(4) Laya_示例(2)
...24 10:07 问题解决了, this.point.elements[0] = MouseManager.instance.mouseX;//用Laya.stage.mouseX有问题,在SCALE_SHOWALL下 this.point.elements[1] = MouseManager.instance.mouseY; cuixueying • 2017-04-24 10:21 厉害!
来源: Laya_社区 发布时间: 20170421
...m) { this._stage._canvasTransform.invertTransformPoint(this._point); _this.mouseX = this._point.x; _this.mouseY = this._point.y; } _this._event.touchId = e.identifier || 0; this._tTouchID = _this._event.touchId; var evt; evt = TouchManager.I._event; evt._stoped = false; evt.nativeEvent = _this._even...
来源: Laya_社区 发布时间: 20191227
...tyle.width = "100%" 自适应外部的DIV 但我画笔的定位 this.stage.mouseX 取不到正确位。这怎么处理? 如图,白色画布是1024 x 650 外层div 是 500 x 500 按照鼠标点下去的 位置。在白色画布中。应该有x = 900 多才合理 附件 : --> test9.rar 2017-11-...
来源: Laya_社区 发布时间: 20171115
... function mousemove(){ point.push({ x:Laya.stage.mouseX, y:Laya.stage.mouseY, time:Date.now(), });//给point集合添加一个object,带有当前的鼠标位置和当前的时间 }; //鼠标移动时触发的mousemove事件 //帧事...
来源: Laya_社区 发布时间: 20171018
...OVE,this,onMouseMove); private function onMouseMove():void { if(Laya.stage.mouseX == 100 && Laya.stage.mouseY == 150) { //在这里调你想要执行的事件回调函数即可 } } Playerdata1 • 2017-06-08 10:20 要是知道的话就不会问了 。。 谢谢你的回答 不过 还是不...
来源: Laya_社区 发布时间: 20170607
...件才能获取坐标 但是如果我一直按着不动就无法触发了 mouseXmouseY只能获取一个点的坐标 2017-12-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 wudi199553 赞同来自: private onMou...
来源: Laya_社区 发布时间: 20171201
...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
.../ protected _tempVector3: Laya.Vector3 = new Laya.Vector3(); protected lastMouseX: number = 0; protected lastMouseY: number = 0; protected yawPitchRoll: Laya.Vector3 = new Laya.Vector3(); protected resultRotation: Laya.Quaternion = new Laya.Quaternion(); protected tempRotationZ: Laya.Quaternion = ne...
来源: Laya3.0_文档 发布时间: 20241014
...",this.camera.) this.camera.viewportPointToRay(new Laya.Vector2(Laya.stage.mouseX,Laya.stage.mouseY),this.ray) if(this.physics.rayCast(this.ray,this.hitInfo)){ console.log("检测到了") } } 2019-06-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20190621
...a.TiledMap; private MapX:number = 0; private MapY:number = 0; private mLastMouseX:number; private mLastMouseY:number; onEnable() { //创建地图对象 this.tMap = new Laya.TiledMap(); //创建Rectangle实例,视口区域 var viewRect:Laya.Rectangle = new Laya.Rectangle(0, 0, Laya.stage.designWidt...
来源: Laya3.0_文档 发布时间: 20230303