Script API - v26.50.27
    Preparing search index...

    Class TimeMarkerBeta

    A named point in time on a world clock that can occur once or periodically.

    export class TimeMarker {
    private constructor();
    readonly name: string;
    readonly period?: number;
    readonly time: number;
    }
    Index

    Constructors

    Properties

    Constructors

    Properties

    name: string

    The identifier that represents this time marker.

    This property can't be read in early-execution mode.

    period?: number

    The interval (in ticks) at which the time marker repeats. If not specified, the time marker will only occur once.

    WorldClockInvalidTimeMarkerError: If the time marker is invalid.

    WorldClockInvalidTimeMarkerError

    This property can't be read in early-execution mode.

    time: number

    The time (in ticks) that the time marker occurs at on a world clock.

    WorldClockInvalidTimeMarkerError: If the time marker is invalid.

    WorldClockInvalidTimeMarkerError

    This property can't be read in early-execution mode.