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

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

11. 官方案例里摄像机绕物体旋转脚本的问题 [ 55%]

...rrentAngles = this.LerpVector3(this.CurrentAngles, this.targetAngles, this.deltaTime * this.damper); this.CurrentDistance = this.LerpNum(this.CurrentDistance, this.targetDistance, this.deltaTime * this.damper); //Update transform position and rotation. // Quaternion.createFromYawPitchRoll(this.Curre...

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

12. 如何能监听到TouchStart和TouchEnd事件 [ 48%]

...  keyCode: number;         /**滚轮滑动增量*/         delta: number;         /**          * 设置事件数据。          * @param    type 事件类型。          * @param    currentTarget 事件目标触发对象。          * @para...

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

13. 2.0版本可用的CameraMoveScript.ts [ 47%]

...*/ onUpdate(): void {         var elapsedTime: number = Laya.timer.delta;         if (!isNaN(this.lastMouseX) && !isNaN(this.lastMouseY) && this.isMouseDown) {             var scene: Laya.Scene3D = this.owner.scene;             var offsetX: num...

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

14. 使用3D精灵 · LayaAir3.0文档 · LAYABOX [ 39%]

...听键盘事件 */ onUpdate(): void { var elapsedTime: number = Laya.timer.delta; if (!isNaN(this.lastMouseX) && !isNaN(this.lastMouseY) && this.isMouseDown) { Laya.InputManager.hasKeyDown(87) && this.moveForward(-this.speed * elapsedTime);//W Laya.InputManager.hasKeyDown(83)...

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