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

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

121. 3D网格添加刚体后设置欧拉角出现位置错误 [ 83%]

...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

122. LayaAir3D基础数学工具(ActionScript-3D基础(AS3)-LayaAir3D图形系统基础概念) [ 83%]

...aair2.ldc2.layabox.com/api2/Chinese/index.html?category=Core&class=laya.d3.math.Vector3) 。 **颜色** ​ 那么在各种颜色属性赋值上,三维向量中的值又分别代表了R、G、B三种颜色,分别为红、绿、蓝。还有些地方使用四维向量作为颜色参数,Vector4...

来源: Laya2.0_文档 发布时间: 20210715

123. 微信浏览器里横屏home键方向 [ 83%]

...== SCREEN_HORIZONTAL) {                     mat.rotate(Math.PI / 2);                     mat.translate(screenHeight / pixelRatio, 0);                     canvasDegree = 90;                 } else {              ...

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

124. 3D灯光与阴影 · LayaAir3.0文档 · LAYABOX [ 83%]

...,Z值会影响Cluster接受区域光(点光、聚光)影响的数量,Math.floor(2048 / lightClusterCount.z - 1) * 4 为每个Cluster的最大平均接受区域光数量,如果每个Cluster所接受光源影响的平均数量大于该值,则较远的Cluster会忽略其中多余的光照影响...

来源: Laya3.0_文档 发布时间: 20241014

125. 陀螺仪与加速计(JavaScript-LayaAir基础篇(JS)-硬件设备相关) [ 83%]

... 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

126. 官方Demo摇杆控制有bug [ 82%]

...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

127. 简单的震屏效果 [ 82%]

...p++;         //随机获取震动方向           dir = Math.random() > .5 ? 1 : -1;         //随机获取X轴移动量           offX = Math.random() * 5 * dir + vibrateObj.x;         //随机获取Y轴移动量           offY = ...

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

128. 陀螺仪与加速计(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 82%]

...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

129. 陀螺仪与加速计 · LayaAir3.0文档 · LAYABOX [ 82%]

...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

130. SphereCollider和MeshCollider碰撞检测的bug [ 82%]

...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