UNPKG

@glowjs/core

Version:

GlowJS数字孪生引擎核心库。

21 lines (20 loc) 473 B
import { Point3D } from "../misc"; export type ParticleData = { id?: string; name?: string; resId?: string; start?: boolean; capacity: number; position: Point3D; direction1: Point3D; direction2: Point3D; bounding: Point3D; minSize: number; maxSize: number; emitRate: number; minEmitPower: number; maxEmitPower: number; updateSpeed: number; minLifeTime: number; maxLifeTime: number; };