Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.7.0
    Preparing search index...

    Interface SpeedModifierState

    Complete speed modifier state for physics calculations.

    Korean: 속도 변경 상태 (Speed Modifier State)

    Contains all calculated speed modifiers and final values for application to the physics-based movement system.

    속도변경상태

    interface SpeedModifierState {
        baseSpeed: number;
        canRun: boolean;
        combatStatePenalty: number;
        finalAcceleration: number;
        finalSpeed: number;
        injuryPenalty: number;
        staminaPenalty: number;
        stanceModifier: number;
    }
    Index

    Properties

    baseSpeed: number

    Base movement speed before modifiers (m/s)

    canRun: boolean

    Whether running is allowed (false when stamina < 10%)

    combatStatePenalty: number

    Combat state speed reduction (0.0 to 1.0, percentage reduction)

    finalAcceleration: number

    Final calculated acceleration (m/s²)

    finalSpeed: number

    Final calculated movement speed (m/s)

    injuryPenalty: number

    Injury-based speed reduction (0.0 to 0.75, percentage reduction) - Korean: 부상감소

    staminaPenalty: number

    Stamina-based acceleration reduction (0.0 to 0.75, percentage reduction) - Korean: 스태미나효과

    stanceModifier: number

    Stance-based speed multiplier (0.80 to 1.25)