@rbxts/a-plant-generator - v0.2.0
    Preparing search index...

    Interface PlantGenerationOptions

    High-level deterministic generation options.

    interface PlantGenerationOptions {
        cache?: GenerationCache<PlantGenerationResult>;
        cancellation?: CancellationToken;
        iterations: number;
        limits?: Partial<GenerationLimits>;
        mutations?: StructuredParameter;
        observer?: PlantGenerationObserver;
        parameters?: Readonly<Record<string, SymbolParameter>>;
        seed: number;
        time?: number;
    }
    Index
    cancellation?: CancellationToken
    iterations: number
    limits?: Partial<GenerationLimits>
    parameters?: Readonly<Record<string, SymbolParameter>>
    seed: number
    time?: number