PilotGaea 3D O'view
    正在準備搜尋索引...

    產生器參數。

    interface GeneratorParameter {
        model: string;
        position: Geo3DPoint;
        particleMaxLife: number;
        generatePerSecond: number;
        maxParticleHold: number;
        attitude?: Geo3DPoint;
        particleVelocity?: Geo3DPoint;
        particleAcceleration?: Geo3DPoint;
        particleRotatePerSecond?: number;
        frameShiftPerSecond?: number;
        particleScale?: number;
        particleDeltaScale?: number;
        particleDegree?: number;
        relativeCamera?: Geo3DPoint;
        randomRegion?: Geo3DPoint;
        particleRelativeCamera?: boolean;
        randomParticleScale?: [min: number, max: number];
        randomParticleDegree?: [min: number, max: number];
        randomParticleVelocity?: [Geo3DPoint, Geo3DPoint];
        randomParticleAcceleration?: [Geo3DPoint, Geo3DPoint];
        randomParticleDeltaScale?: [min: number, max: number];
        randomParticleRotatePerSecond?: [min: number, max: number];
    }
    索引

    屬性

    model: string

    粒子原型名稱。

    position: Geo3DPoint

    產生器座標。

    particleMaxLife: number

    粒子最大壽命。

    generatePerSecond: number

    產生器每秒生成粒子數。

    maxParticleHold: number

    容器最大容納粒子數。

    attitude?: Geo3DPoint

    產生器姿態 (歐拉角)。

    new Geo3DPoint(0, 0, 0)
    
    particleVelocity?: Geo3DPoint

    粒子速度 (m/s)。

    new Geo3DPoint(0, 0, 0)
    
    particleAcceleration?: Geo3DPoint

    粒子加速度 (m^2/s)。

    new Geo3DPoint(0, 0, 0)
    
    particleRotatePerSecond?: number

    粒子每秒旋轉角度。

    0
    
    frameShiftPerSecond?: number

    粒子每秒所需影格數。

    0
    
    particleScale?: number

    粒子大小倍率。

    1
    
    particleDeltaScale?: number

    粒子每秒變化大小。

    1
    
    particleDegree?: number

    粒子初始化時角度。

    0
    
    relativeCamera?: Geo3DPoint

    相對攝影機位置。

    randomRegion?: Geo3DPoint

    隨機範圍。

    particleRelativeCamera?: boolean

    粒子相對攝影機。

    randomParticleScale?: [min: number, max: number]

    粒子隨機變化大小。[下限, 上限]

    randomParticleDegree?: [min: number, max: number]

    粒子初始化時隨機角度。[下限, 上限]

    randomParticleVelocity?: [Geo3DPoint, Geo3DPoint]

    粒子隨機每秒變化大小。[下限, 上限]

    randomParticleAcceleration?: [Geo3DPoint, Geo3DPoint]

    粒子隨機速度。[下限, 上限]

    randomParticleDeltaScale?: [min: number, max: number]

    粒子隨機加速度。[下限, 上限]

    randomParticleRotatePerSecond?: [min: number, max: number]

    粒子隨機每秒旋轉角度。[下限, 上限]