Saxonberg Server API
    Preparing search index...

    Variable WEATHER_DEFAULTSConst

    WEATHER_DEFAULTS: {
        FORECAST_SEGMENTS: 4;
        GLOBAL_BASE_SEED: 1461033773;
        GRAMMAR_WARMUP: 8;
        INTERP_BAND: 0.15;
        SEGMENT_LENGTH_S: number;
    } = ...

    The weather subsystem's tuning dials. Playtest values, not plan decisions — the home that kills the defaults.ts reflex.

    Type Declaration

    • ReadonlyFORECAST_SEGMENTS: 4

      Default number of upcoming segments forecastFor reports.

    • ReadonlyGLOBAL_BASE_SEED: 1461033773

      Global base seed XOR'd into every locality seed (and the null seed).

    • ReadonlyGRAMMAR_WARMUP: 8

      Bounded warmup-anchor depth (D-C): typeForSegment re-anchors every GRAMMAR_WARMUP segments and walks forward at most this many steps. O(WARMUP), pure, process-stable.

    • ReadonlyINTERP_BAND: 0.15

      Interpolation lead-in band (D-D): the fraction of a segment, measured from its start boundary, over which the deviation ramps from the previous segment's targets to the current's. Outside the band the deviation is the current segment's targets (piecewise-constant within thermal's tolerance). Keeps the deviation continuous across boundaries; the type is always the current segment's.

    • ReadonlySEGMENT_LENGTH_S: number

      Segment length in game-seconds — a piecewise-constant ambient (6h).