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

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

51. 射线检测报错,outHitInfo.sprite3D=null; [ 60%]

...():void{ this.camera.viewportPointToRay(new Laya.Vector2(Laya.MouseManager.instance.mouseX,Laya.MouseManager.instance.mouseY),this.ray); Laya.Physics.rayCast(this.ray,this.hit); console.log("当前射线碰撞的信息是:" + this.hit.sprite3D.name); //摄像机位置 var position:Laya.Vector3=new L...

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

52. 使用HttpRequest 请求的头部信息headers参数结果异常 [ 59%]

...on/json"] auth_headers.push("token") auth_headers.push(WarM.instance.token),我这样是可以的,你把前面的东西加一加看看行不行 wuciqiang • 2018-05-24 16:30 多谢大佬 根据你的这个写法 然后 多次测试 还是不行。。 抓狂中。。 wuciqiang •...

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

53. Button和下面的3D物体重叠,点击button,3D物体会同时响应自己的鼠标脚本 [ 58%]

...辑 import clickEvent from "./clickEvent"; onMouseClick() { if(clickEvent.instance.isClick) //单例模式 { } } 2021-01-23 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 From Nowhere 相关问题 请问有没有方法能够获取“鼠...

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

54. 陀螺仪和加速计使用问题 [ 57%]

...和加速计例子中的上面两句运行时都报 Cannot read property 'instance' of undefined 的错误 2018-05-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 5 个回复 Apple 赞同来自: 你用什么语言 目前陀...

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

55. laya.ui.Dialog_API3.0 [ 56%]

...aya.utils.Handler; public class Dialog_Example { private var dialog:Dialog_Instance; public function Dialog_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load("resource/ui/btn_close.png", Handl...

来源: Laya3.0_api 发布时间: 20231115

56. IOS微信内置浏览器陀螺仪问题 Laya2.4.0bate [ 56%]

...dEventListener('deviceorientation', function(event)  {}) Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation);  连接打开方式都由微信扫一扫打开,safari不支持此demo运行 查找到资料地址: https://caniuse.com/#search=deviceorientation ios测试微...

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

57. 有关Laya3D碰撞检测疑问 [ 56%]

...{ //从屏幕空间生成射线 this.point.elements[0] = Laya.MouseManager.instance.mouseX; this.point.elements[1] = Laya.MouseManager.instance.mouseY; this.camera.viewportPointToRay(this.point, this.ray);  //射线检测获取所有检测碰撞到的物体 Laya.Physics.rayCastAll(this.ray, this._o...

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

58. Socket能连接到服务器,客户端发请求也能收到服务端的数据,但是服务端主动推送数据,客户端就是收不到数据? [ 55%]

...cketmanger{ private static var _I:Socketmanger; public static function get Instance():Socketmanger { if(_I==null)_I=new Socketmanger(); return _I; } private static var socket:Socket=null; private var list:Array=; public function Connect(url:String):void { socket=new Socket(); socket.on(Event.OPEN, t...

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

59. rigidBody.applyForce 物体不会移动 [ 54%]

..., false); } } private onMouseMove(): void { var mouseY = Laya.MouseManager.instance.mouseY; var speedY: number = 2; this.pitch -= speedY * mouseY; this.character.transform.rotate( new Laya.Vector3(0, 0.001 * this.pitch, 0), false, false ); } private onMouseDown() { this.point.x = Laya.MouseManager.i...

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

60. 重力感应 Accelerator 发布微信游戏后失效。是因为什么? [ 54%]

... Accelerator 发布微信游戏后失效。是因为什么? Accelerator.instance.on(Laya.Event.CHANGE, this, monitorAccelerator); function monitorAccelerator(acceleration, accelerationIncludingGravity, rotationRate, interval) {         let x = accelerationIncludingGravity.x;         let y ...

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