KX_LibLoadStatus(EXP_PyObjectPlus)#
base class — EXP_PyObjectPlus
- class KX_LibLoadStatus(EXP_PyObjectPlus)#
An object providing information about a LibLoad() operation.
# Print a message when an async LibLoad is done import bge def finished_cb(status): print("Library (%s) loaded in %.2fms." % (status.libraryName, status.timeTaken)) bge.logic.LibLoad('myblend.blend', 'Scene', async=True).onFinish = finished_cb
- onFinish#
A callback that gets called when the lib load is done.
- Type:
callable
- finished#
The current status of the lib load.
- Type:
boolean
- progress#
The current progress of the lib load as a normalized value from 0.0 to 1.0.
- Type:
float
- libraryName#
The name of the library being loaded (the first argument to LibLoad).
- Type:
string
- timeTaken#
The amount of time, in seconds, the lib load took (0 until the operation is complete).
- Type:
float