大约有 474 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
Laya_社区(251) Laya_示例(61) Laya3.0_api(39) Laya2.0_文档(33) Laya2.0_api(28) Laya2.0_示例(25) laya_api(21) Laya3.0_文档(16)
...r3(); //设置旋转角度 this.tmpVector.setValue(Math.random() * 360, Math.random() * 360, Math.random() * 360); box.transform.rotationEuler = this.tmpVector; //设置掉落位置 this.tmpVector.setValue(-2, 2, -2); box.transf...
来源: Laya_社区 发布时间: 20201127
...aair2.ldc2.layabox.com/api2/Chinese/index.html?category=Core&class=laya.d3.math.Vector3) 。 **颜色** 那么在各种颜色属性赋值上,三维向量中的值又分别代表了R、G、B三种颜色,分别为红、绿、蓝。还有些地方使用四维向量作为颜色参数,Vector4...
来源: Laya2.0_文档 发布时间: 20210715
...== SCREEN_HORIZONTAL) { mat.rotate(Math.PI / 2); mat.translate(screenHeight / pixelRatio, 0); canvasDegree = 90; } else { ...
来源: Laya_社区 发布时间: 20180621
...,Z值会影响Cluster接受区域光(点光、聚光)影响的数量,Math.floor(2048 / lightClusterCount.z - 1) * 4 为每个Cluster的最大平均接受区域光数量,如果每个Cluster所接受光源影响的平均数量大于该值,则较远的Cluster会忽略其中多余的光照影响...
来源: Laya3.0_文档 发布时间: 20241014
... onDeviceorientation(absolute, rotationInfo) { this.info.text = "alpha:" + Math.floor(rotationInfo.alpha) + '\n' + "beta :" + Math.floor(rotationInfo.beta) + '\n' + "gamma:" + Math.floor(rotationInfo.gamma); } ``` ## 2、加速计 `Accelerator`类定期发送设备的运动传感器检测的活...
来源: Laya2.0_文档 发布时间: 20210714
...er.ts里的rockerMove方法里的如下代码: this._currentMouse.x = Math.round(e.touchPos.x / Laya.stage.clientScaleY); this._currentMouse.y = Math.round(e.touchPos.y / Laya.stage.clientScaleY); this.currRockerbox.globalToLocal(this._currentMouse, false); 改为如下方式: // this._curren...
来源: Laya_社区 发布时间: 20231013
...p++; //随机获取震动方向 dir = Math.random() > .5 ? 1 : -1; //随机获取X轴移动量 offX = Math.random() * 5 * dir + vibrateObj.x; //随机获取Y轴移动量 offY = ...
来源: Laya_社区 发布时间: 20190401
...lean, rotationInfo:RotationInfo):void { info.text = "alpha:" + Math.floor(rotationInfo.alpha) + '\n' + "beta :" + Math.floor(rotationInfo.beta) + '\n' + "gamma:" + Math.floor(rotationInfo.gamma); } ``` ## 2、加速计 `Accelerator`类定期发送设备的运动传感...
来源: Laya2.0_文档 发布时间: 20210714
...lean, rotationInfo: Laya.RotationInfo): void { this.info.text = "alpha:" + Math.floor(rotationInfo.alpha) + '\n' + "beta :" + Math.floor(rotationInfo.beta) + '\n' + "gamma:" + Math.floor(rotationInfo.gamma); } } new Gyroscope_Sample(); 2、加速计 Accelerator类定期发送设备的运动传...
来源: Laya3.0_文档 发布时间: 20230303
...ion.sphereContainsBox(this.boundSphere,meshCollider._boundBox)!==/*laya.d3.math.ContainmentType.Disjoint*/0){ var positions=meshCollider.mesh._positions; for (var i=0,n=positions.length;i < n;i++){ if (Collision.sphereContainsPoint(this.boundSphere,positions[i])===/*laya.d3.math.ContainmentType.C...
来源: Laya_社区 发布时间: 20181114