Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Interface CalendarConfigSeason

    A definition of a season within a calendar year. By default, seasons can be defined as aligning to either months or specific ranges of days. A range in either months or in days must be specified.

    interface CalendarConfigSeason {
        abbreviation?: string;
        dayEnd?: number | null;
        dayStart?: number | null;
        monthEnd?: number | null;
        monthStart?: number | null;
        name: string;
    }
    Index

    Properties

    abbreviation?: string

    The abbreviated name of the season.

    dayEnd?: number | null

    A day of the year at the end of which the season ends.

    dayStart?: number | null

    A day of the year at the beginning of which the season starts.

    monthEnd?: number | null

    An ordinal month at the end of which the season starts.

    monthStart?: number | null

    An ordinal month at the beginning of which the season starts.

    name: string

    The full name of the season.