steam_stat_progress table reference - Stingray Lua API Reference

steam_stat_progress table reference

Description

A table that provides information about the progress of an operation carried out by the Steam stingray.Stats interface.

An instance of this table is returned by each call to stingray.Stats.progress().

For example:

{
    done = true
}
    -- or
{
    done = true,
    error = "failed"
}

Data Members

done : boolean

Returns true if the operation has been finished, or false if it is still in progress.

error : string?

A string that describes any error encountered during the process, or nil if no error occurred.