UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

25 lines (24 loc) 552 B
import { Mesh } from '../../runtime'; import { Entity } from '../Entity'; import { Component } from './Component'; /** * 自动开门(相机靠近) */ export declare class AutoOpenDoor extends Component { private static _actionManager; private static _app; static _collision: Mesh; /** * 实例化一个自动开门对象 * @param entity 实体对象 */ constructor(entity: Entity); /** * 创建 */ _build(): void; /** * 拆毁 */ _unbuild(): void; }