pixi.js
    Preparing search index...

    Interface GCSystemOptionsAdvanced

    Options for the GCSystem.

    interface GCSystemOptions {
        gcActive: boolean;
        gcFrequency: number;
        gcMaxUnusedTime: number;
    }
    Index

    Properties

    gcActive: boolean

    If set to true, this will enable the garbage collector.

    true
    
    gcFrequency: number

    How frequently to run garbage collection in milliseconds.

    30000
    
    gcMaxUnusedTime: number

    The maximum time in milliseconds a resource can be unused before being garbage collected.

    60000