@newkrok/three-particles - v2.1.0
    Preparing search index...

    Type Alias Box

    Configuration for a box shape used in particle systems.

    const box: Box = {
    scale: { x: 10, y: 10, z: 10 },
    emitFrom: EmitFrom.EDGE,
    };
    type Box = {
        emitFrom?: EmitFrom;
        scale?: Point3D;
    }
    Index

    Properties

    Properties

    emitFrom?: EmitFrom

    Specifies where particles are emitted from within the box.

    scale?: Point3D

    The scale of the box as a 3D point.