Spectacular Cellular Automata
    Preparing search index...
    interface ReactiveState {
        aliasBackground: boolean;
        atStart: boolean;
        cellGridHeight: number;
        cellGridWidth: number;
        controlsVisible: boolean;
        customColours: string[];
        dragging: boolean;
        historyStack: ChangeT[];
        interfaceMode: "Editor" | "3D View";
        paused: boolean;
        raiseCells: boolean;
        raisedCellHeight: number;
        randomFillProbability: number;
        redoStack: ChangeT[];
        selectedColour: string;
        shape: "torus" | "sphere";
        showSettings: boolean;
        simulationRule: (arg0: number, arg1: number) => number;
        simulationSpeed: number;
    }
    Index

    Properties

    aliasBackground: boolean

    2D mode - Toggle aliasing the background tiles

    atStart: boolean
    cellGridHeight: number
    cellGridWidth: number
    controlsVisible: boolean
    customColours: string[]

    Hex

    dragging: boolean
    historyStack: ChangeT[]
    interfaceMode: "Editor" | "3D View"
    paused: boolean
    raiseCells: boolean
    raisedCellHeight: number
    randomFillProbability: number
    redoStack: ChangeT[]
    selectedColour: string

    Hex or preset like "blue"

    shape: "torus" | "sphere"
    showSettings: boolean
    simulationRule: (arg0: number, arg1: number) => number
    simulationSpeed: number