Hilo3d API - v2.0.0-alpha.4
    Preparing search index...

    Interface ParticleAuthoringPreviewResponse

    Structured response returned for every accepted or rejected preview command.

    interface ParticleAuthoringPreviewResponse {
        command: "invalid" | ParticleAuthoringPreviewCommand;
        diagnostics: readonly Readonly<ParticleAuthoringDiagnostic>[];
        ir?: Readonly<ParticleAuthoringIR>;
        protocolVersion: 1;
        requestId: string;
        state: Readonly<ParticleAuthoringPreviewState>;
        success: boolean;
    }
    Index
    command: "invalid" | ParticleAuthoringPreviewCommand
    diagnostics: readonly Readonly<ParticleAuthoringDiagnostic>[]
    ir?: Readonly<ParticleAuthoringIR>

    Present after successful compilation so external inspectors can rebuild without runtime access.

    protocolVersion: 1
    requestId: string
    success: boolean