gwanyan-interactive-grassland - v0.1.0
    Preparing search index...

    The simulation does not need the entire pointer history. It only needs a recent position, a recent velocity, and a simple "is the pointer still active?" flag. This object packages exactly that information.

    interface WindSourceState {
        isActive: boolean;
        currentGroundCoordinate: GroundCoordinate | null;
        groundVelocityInWorldUnitsPerSecond: GroundCoordinate;
        movementMagnitudeInWorldUnitsPerSecond: number;
    }
    Index

    Properties

    isActive: boolean
    currentGroundCoordinate: GroundCoordinate | null
    groundVelocityInWorldUnitsPerSecond: GroundCoordinate
    movementMagnitudeInWorldUnitsPerSecond: number