Merge branch 'master' into menuscripts

This commit is contained in:
uramer 2024-01-27 15:41:25 +01:00
commit 9cce2e39ba
215 changed files with 4307 additions and 2011 deletions

View file

@ -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

View file

@ -0,0 +1,8 @@
Interface AnimationController
=============================
.. include:: version.rst
.. raw:: html
:file: generated_html/scripts_omw_mechanics_animationcontroller.html

View file

@ -0,0 +1,7 @@
Package openmw.animation
========================
.. include:: version.rst
.. raw:: html
:file: generated_html/openmw_animation.html

View file

@ -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

View file

@ -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. |