NovaECS - v1.0.11
    Preparing search index...

    Variable ProfilerDumpSystemConst

    ProfilerDumpSystem: SystemConfig = ...

    System that periodically dumps profiling statistics to console 定期将性能统计信息输出到控制台的系统

    Usage:

    // Add to scheduler with default config
    scheduler.add(ProfilerDumpSystem);

    // Or customize config
    world.setResource(ProfilerDumpConfig_, {
    enabled: true,
    interval: 120, // Every 2 seconds at 60fps
    topCount: 5,
    resetMaxAfterDump: false
    });