大约有 431 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0085 秒)
...erShape.ts:60 创建一个新的 CapsuleColliderShape 实例。 Parameters Default value radius: number = 0.5 Default value length: number = 2 Default value orientation: number = ColliderShape.SHAPEORIENTATION_UPY 胶囊体方向。 Returns CapsuleColliderShape Properties needsCustomCollisionCallbac...
来源: Laya3.0_api 发布时间: 20231115
...ix3x3 Implements IClone Index Constructors constructor Properties elements DEFAULT Methods clone cloneTo determinant identity invert rotate scale translate transpose createFromMatrix4x4 createFromRotation createFromScaling createFromTranslation createRotationQuaternion forwardLookAt lookAt multiply ...
来源: Laya3.0_api 发布时间: 20231102
...liderShape.ts:47 创建一个新的 ConeColliderShape 实例。 Parameters Default value radius: number = 0.5 半径。 Default value height: number = 1 高。 Default value orientation: number = ColliderShape.SHAPEORIENTATION_UPY Returns ConeColliderShape Properties needsCustomCollisionCallback nee...
来源: Laya3.0_api 发布时间: 20231115
...lliderShape.ts:66 创建一个新的 BoxColliderShape 实例。 Parameters Default value sizeX: number = 1 盒子X轴尺寸。 Default value sizeY: number = 1 盒子Y轴尺寸。 Default value sizeZ: number = 1 盒子Z轴尺寸。 Returns BoxColliderShape Properties needsCustomCollisionCallback need...
来源: Laya3.0_api 发布时间: 20231115
...efined in laya/d3/math/Plane.ts:16 创建一个 Plane 实例。 Parameters Default value normal: Vector3 = new Vector3 平面的向量 Default value d: number = 0 平面到原点的距离 Returns Plane Properties Static PlaneIntersectionType_Back PlaneIntersectionType_Back: number = 0 Defined in lay...
来源: Laya3.0_api 发布时间: 20231115
...看后面。模块的导出和加载使用ES6标准的`export或者export default`和`import a from "./a"`。由于使用了browserify和tsify编译,browerify是根据入口文件开始查找所有import文件,根据依赖关系进行编译,所以根本找不到namespace的定义文件。也...
来源: Laya_社区 发布时间: 20190422
...但vscode报未定义,IDE F8编译时也不通过 代码: export default class Index extends Laya.Script { /* @prop {name: speed, tips: "速度", type: Number, default: 10} */ constructor() { super(); } onAwake() { ...
来源: Laya_社区 发布时间: 20191227
...rs method: Function 要执行的函数的名称。例如,functionName。 Default value args: any[] = null 传递给 method 函数的可选参数列表。 Returns void clearTimer clearTimer(caller: any, method: Function): void Defined in laya/display/Node.ts:609 清理定时器。功能同Laya.time...
来源: Laya3.0_api 发布时间: 20231115
...geRunTime from "./game/ImageRunTime" /* * 游戏初始化配置; */ export default class GameConfig{ static width:number=640; static height:number=1136; static scaleMode:string="fixedwidth"; static screenMode:string="none"; static alignV:string="top"; static alignH:string="left"; static startScene:a...
来源: Laya_社区 发布时间: 20181014
...似按钮)的功能,全部代码如下所示: ```typescript export default class ImageRunTime extends Laya.Image{ constructor(){ super(); this.scaleTime = 100; //设置组件的中心点 this.anchorX = this.anchorY = 0.5; //添加鼠标按下事件侦听。按时时缩小按钮。 this.on(Laya...
来源: Laya2.0_文档 发布时间: 20210715