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

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

51. 一篇上手LayaAir的3D物理引擎(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 53%]

...器的生命周期。 ##### 2.4.4 使用生命周期方法 ###### 创建**Script3D**脚本 生命周期的方法,只能在脚本类里使用,所以,我们需要创建一个脚本,3D游戏必须要继承3D的脚本**Script3D**。空脚本的示例代码如下: ```typescript /** * TypeScript...

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

52. UNITY导出的模型旋转不了 [ 53%]

...alse,false); //}); })); })); })(this); class BoxControlScript extends Laya.Script3D { constructor() { super(); this.obj = null; this.rotation = new Laya.Vector3(0, 1, 0); } /** * 覆写3D对象组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAw...

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

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

... property } = Laya; @regClass() export class CameraMoveScript extends Laya.Script3D { /** @private */ protected _tempVector3: Laya.Vector3 = new Laya.Vector3(); protected lastMouseX: number = 0; protected lastMouseY: number = 0; protected yawPitchRoll: Laya.Vector3 = new Laya.Vector3(); protected re...

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

54. (实现手指控制模型的缩放旋转)触控可以识别 但是导入的模型没有根据触控反应 [ 36%]

...); } } //激活启动类 new MultiTouch(); class MonkeyScript extends Laya.Script3D{     private _scene:Laya.Scene3D;     private _text:Laya.Text;     private _camera:Laya.Camera;     private rotation:Laya.Vector3;     private lastPosition:Laya.Vector2;     private distance:n...

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

55. Laya多点触控是有开关吗 为什么多点触控没有任何反应 [ 34%]

...s.text); } } //激活启动类 new Main(); class MonkeyScript extends Laya.Script3D{     constructor(){         super();         this.scene = null;         this.text = null;         this.camera = null;         this.lastPosition = new Laya.Vector2(0, 0);  ...

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