mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-21 01:09:41 +00:00
Document packages available in menu scripts
This commit is contained in:
parent
a3fd1b3d6f
commit
88049ffac6
4 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
-- `openmw.ambient` controls background sounds, specific to given player (2D-sounds).
|
||||
-- Can be used only by local scripts, that are attached to a player.
|
||||
-- Can be used only by menu scripts and local scripts, that are attached to a player.
|
||||
-- @module ambient
|
||||
-- @usage local ambient = require('openmw.ambient')
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
-- `openmw.core` defines functions and types that are available in both local
|
||||
-- and global scripts.
|
||||
-- `openmw.core` defines functions and types that are available in local,
|
||||
-- global and menu scripts.
|
||||
-- @module core
|
||||
-- @usage local core = require('openmw.core')
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
-- `openmw.input` can be used only in scripts attached to a player.
|
||||
-- `openmw.input` can be used only in menu scripts and scripts attached to a player.
|
||||
-- @module input
|
||||
-- @usage local input = require('openmw.input')
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
-- `openmw.ui` controls user interface.
|
||||
-- Can be used only by local scripts, that are attached to a player.
|
||||
-- Can be used only by menu scripts and local scripts, that are attached to a player.
|
||||
-- @module ui
|
||||
-- @usage
|
||||
-- local ui = require('openmw.ui')
|
||||
|
|
Loading…
Reference in a new issue