mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-29 05:17:58 +03:00
Merge branch 'master' into menuscripts
This commit is contained in:
commit
9cce2e39ba
215 changed files with 4307 additions and 2011 deletions
|
@ -16,6 +16,7 @@ Lua API reference
|
|||
openmw_storage
|
||||
openmw_core
|
||||
openmw_types
|
||||
openmw_animation
|
||||
openmw_async
|
||||
openmw_vfs
|
||||
openmw_world
|
||||
|
@ -34,6 +35,7 @@ Lua API reference
|
|||
openmw_aux_ui
|
||||
interface_activation
|
||||
interface_ai
|
||||
interface_animation
|
||||
interface_camera
|
||||
interface_controls
|
||||
interface_item_usage
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
Interface AnimationController
|
||||
=============================
|
||||
|
||||
.. include:: version.rst
|
||||
|
||||
.. raw:: html
|
||||
:file: generated_html/scripts_omw_mechanics_animationcontroller.html
|
||||
|
7
docs/source/reference/lua-scripting/openmw_animation.rst
Normal file
7
docs/source/reference/lua-scripting/openmw_animation.rst
Normal file
|
@ -0,0 +1,7 @@
|
|||
Package openmw.animation
|
||||
========================
|
||||
|
||||
.. include:: version.rst
|
||||
|
||||
.. raw:: html
|
||||
:file: generated_html/openmw_animation.html
|
|
@ -10,6 +10,9 @@
|
|||
* - :ref:`AI <Interface AI>`
|
||||
- by local scripts
|
||||
- Control basic AI of NPCs and creatures.
|
||||
* - :ref:`AnimationController <Interface AnimationController>`
|
||||
- by local scripts
|
||||
- Control animations of NPCs and creatures.
|
||||
* - :ref:`Camera <Interface Camera>`
|
||||
- by player scripts
|
||||
- | Allows to alter behavior of the built-in camera script
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
+------------------------------------------------------------+--------------------+---------------------------------------------------------------+
|
||||
|:ref:`openmw.types <Package openmw.types>` | everywhere | | Functions for specific types of game objects. |
|
||||
+------------------------------------------------------------+--------------------+---------------------------------------------------------------+
|
||||
|:ref:`openmw.animation <Package openmw.animation>` | everywhere | | Animation controls |
|
||||
+------------------------------------------------------------+--------------------+---------------------------------------------------------------+
|
||||
|:ref:`openmw.async <Package openmw.async>` | everywhere | | Timers and callbacks. |
|
||||
+------------------------------------------------------------+--------------------+---------------------------------------------------------------+
|
||||
|:ref:`openmw.vfs <Package openmw.vfs>` | everywhere | | Read-only access to data directories via VFS. |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue