Strata - v1.4.10
    Preparing search index...

    Interface SandboxState

    interface SandboxState {
        blocks: SandboxBlock[];
        difficulty: "normal" | "peaceful" | "easy" | "hard";
        entities: SandboxEntity[];
        gameMode: "survival" | "creative" | "adventure";
        modifiedChunks: string[];
        playerInventory: InventoryItem[];
        playerPosition: Vec3;
        playerRotation: Vec3;
        timeOfDay: number;
        weather: "fog" | "clear" | "rain" | "snow" | "storm";
        worldName: string;
        worldSeed: number;
    }
    Index

    Properties

    blocks: SandboxBlock[]
    difficulty: "normal" | "peaceful" | "easy" | "hard"
    entities: SandboxEntity[]
    gameMode: "survival" | "creative" | "adventure"
    modifiedChunks: string[]
    playerInventory: InventoryItem[]
    playerPosition: Vec3
    playerRotation: Vec3
    timeOfDay: number
    weather: "fog" | "clear" | "rain" | "snow" | "storm"
    worldName: string
    worldSeed: number