NovaECS - v1.0.11
    Preparing search index...

    Interface SystemExecutionResult

    System execution result 系统执行结果

    interface SystemExecutionResult {
        data?: unknown;
        error?: string;
        executionTime: number;
        invalidatedSystems?: SystemHandle[];
        success: boolean;
    }
    Index

    Properties

    data?: unknown

    Custom result data 自定义结果数据

    error?: string

    Error message if failed 失败时的错误消息

    executionTime: number

    Execution time in milliseconds 执行时间(毫秒)

    invalidatedSystems?: SystemHandle[]

    Systems that were modified and need invalidation 被修改需要失效的系统

    success: boolean

    Whether execution was successful 执行是否成功