大约有 919 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
Laya_社区(468) Laya3.0_api(134) Laya2.0_文档(98) laya_api(88) Laya2.0_api(75) Laya_示例(42) Laya3.0_文档(14)
Laya.Vector3小数的问题,很奇怪啊 var v: Laya.Vector3 = new Laya.Vector3(1.1069, 0, 0); console.log(v.x); 输出:1.1068999767303467 而不是1.1069 我想保留2位或3位小数,不管你怎么设置,然而始终无效。1.1068999767303467 怎么解? 2019-03-06 添加评...
来源: Laya_社区 发布时间: 20190306
...ddChild(new Laya.Camera(0, 0.1, 100)); camera.transform.translate(new Laya.Vector3(0, 0.35, 1)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); var directionLight = scene.addChild(new Laya.DirectionLight()); Laya.loader.create("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey...
来源: Laya_示例 发布时间: 20241117
...ctor4[read-only] VertexPositionNormalColorTexture0Texture1Skin normal : Vector3[read-only] VertexPositionNormalColorTexture0Texture1Skin position : Vector3[read-only] VertexPositionNormalColorTexture0Texture1Skin textureCoordinate0 : Vector2[read-only] VertexPositionNormalColorTexture0Textu...
来源: laya_api 发布时间: 20170929
...rties direction origin Methods at Constructors constructor new Ray(origin: Vector3, direction: Vector3): Ray Defined in laya/d3/math/Ray.ts:10 创建一个 Ray 实例。 Parameters origin: Vector3 射线的起点 direction: Vector3 射线的方向 Returns Ray Properties direction direction: Vector3 ...
来源: Laya3.0_api 发布时间: 20231115
... : Vector4[read-only] VertexPositionNormalTexture0Texture1Skin normal : Vector3[read-only] VertexPositionNormalTexture0Texture1Skin position : Vector3[read-only] VertexPositionNormalTexture0Texture1Skin textureCoordinate0 : Vector2[read-only] VertexPositionNormalTexture0Texture1Skin text...
来源: laya_api 发布时间: 20170929
Vector3.equals是不是有问题,还是我理解错误 Vector3.equals(new Vector3(0 ,1 ,0),new Vector3(0 ,-1 ,0)) 结果竟然等于 true 。。。 2017-08-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Moni...
来源: Laya_社区 发布时间: 20170804
...项目开发更高效。Laya3D.init(0, 0, true); this._position = new Laya.Vector3(0, 0, 0); this._upVector3 = new Laya.Vector3(0, 1, 0); this._tarPosition = new Laya.Vector3(0, 0, 0); this._finalPosition = new Laya.Vector3(0, 0, 0); this._quaternion = new Laya.Quaternion(); this.index = 0; this.cur...
来源: Laya_示例 发布时间: 20241117
...formDemo{ private scene:Laya.Scene3D; private position:Laya.Vector3 = new Laya.Vector3(0, 0, 0); private position1:Laya.Vector3 = new Laya.Vector3(0, 0, 0); private rotate:Laya.Vector3 = new Laya.Vector3(0, 1, 0); private scale:Laya.Vector3 = new Laya.Vector3()...
来源: Laya_社区 发布时间: 20190509
Laya.Vector3.equals方法比较两个方向相反的向量,结果也是相等? 两个方向相反、长度相等的向量,用Laya.Vector.equals方法比较,结果为相等,比如: var a = new Laya.Vector3(1,0,0); var b = new Laya.Vector3(-1,0,0); console.log(Laya.Vector3.equals(a, b)); ...
来源: Laya_社区 发布时间: 20180525
...ddChild(new Laya.Camera(0, 0.1, 100)); camera.transform.translate(new Laya.Vector3(0, 0.5, 1)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); Laya.loader.create("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(this, onComplete)); function onComplete...
来源: Laya_示例 发布时间: 20241117