大约有 105 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0046 秒)
Laya_社区(75) Laya2.0_文档(12) Laya3.0_文档(7) Laya3.0_api(5) Laya2.0_api(2) laya_api(2) Laya_示例(1) Laya2.0_示例(1)
...omponent.ts:310 获取物理世界。 缺省的是从所属的scene3d取,子类可以提供另外的方法 Returns PhysicsSimulation getcurrentForce getcurrentForce(out: Vector3): void Inherited from ConstraintComponent.getcurrentForce Defined in laya/d3/physics/constraints/ConstraintComponent.ts:...
来源: Laya3.0_api 发布时间: 20231115
...9-01 12:30 可以的 callback • 2016-09-01 14:11 凡是有继承关系的子类均会出现super的用法 其实就是执行以下继承的父类的构造函数 callback • 2016-08-31 10:06 嗯 以前用Lufy写过~
来源: Laya_社区 发布时间: 20160803
...节点对象中(由于篇幅有限,图中只列出了Sprite类部分的子类,全部的继承关系请参考API文档),因此本篇会详解介绍 Sprite 类的基础功能,后续的节点对象重复的将不再介绍。 (图1-1) 二、IDE中使用 2.1 创建精灵 2.1.1 Scene2D中...
来源: Laya3.0_文档 发布时间: 20251010
...继承此类,但不要直接实例化此类,因为有些方法需要由子类实现。 Hierarchy Sprite AnimationBase FrameAnimation Animation Index Constructors constructor Properties _extra _ownGraphics _scene _skinBaseUrl _url autoSize hitTestPrior loop mouseThrough name tag wrapMode WRAP_PIN...
来源: Laya3.0_api 发布时间: 20231115
...A>item; items.push(temp); } 5.get,set ts里面父类定义的getset,子类必须要全覆盖下,不能只处理get或set,如: class A { protected _id:number = 1; public get id():number { return this._id } public set id(value:number){ this._id = vaule; } } class B extends ...
来源: Laya_社区 发布时间: 20161109