Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/python_api/rst/bge_types/bge.types.KX_LibLoadStatus.rst')
-rw-r--r--doc/python_api/rst/bge_types/bge.types.KX_LibLoadStatus.rst48
1 files changed, 0 insertions, 48 deletions
diff --git a/doc/python_api/rst/bge_types/bge.types.KX_LibLoadStatus.rst b/doc/python_api/rst/bge_types/bge.types.KX_LibLoadStatus.rst
deleted file mode 100644
index 3e7d370476e..00000000000
--- a/doc/python_api/rst/bge_types/bge.types.KX_LibLoadStatus.rst
+++ /dev/null
@@ -1,48 +0,0 @@
-KX_LibLoadStatus(PyObjectPlus)
-==============================
-
-base class --- :class:`PyObjectPlus`
-
-.. class:: KX_LibLoadStatus(PyObjectPlus)
-
- An object providing information about a LibLoad() operation.
-
- .. code-block:: python
-
- # 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
-
- .. attribute:: onFinish
-
- A callback that gets called when the lib load is done.
-
- :type: callable
-
- .. attribute:: finished
-
- The current status of the lib load.
-
- :type: boolean
-
- .. attribute:: progress
-
- The current progress of the lib load as a normalized value from 0.0 to 1.0.
-
- :type: float
-
- .. attribute:: libraryName
-
- The name of the library being loaded (the first argument to LibLoad).
-
- :type: string
-
- .. attribute:: timeTaken
-
- The amount of time, in seconds, the lib load took (0 until the operation is complete).
-
- :type: float