mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 00:37:58 +03:00
Update Level documentation.
This commit is contained in:
parent
55e7de24b8
commit
94c6ada241
1 changed files with 6 additions and 2 deletions
|
@ -10,6 +10,10 @@ level file itself.
|
|||
@pragma nostrip
|
||||
*/
|
||||
|
||||
/*** Make a new Level object.
|
||||
@function Level.new
|
||||
@return a Level object
|
||||
*/
|
||||
void GameScriptLevel::Register(sol::state* state)
|
||||
{
|
||||
state->new_usertype<GameScriptLevel>("Level",
|
||||
|
@ -91,12 +95,12 @@ e.g. `myLevel.laraType = LaraType.DIVESUIT`
|
|||
//@mem rumble
|
||||
"rumble", &GameScriptLevel::Rumble,
|
||||
|
||||
/// (Mirror) object holding the location and size of the room's mirror, if present.
|
||||
/// (@{Mirror}) object holding the location and size of the room's mirror, if present.
|
||||
// __(not yet implemented)__
|
||||
//@mem mirror
|
||||
"mirror", &GameScriptLevel::Mirror,
|
||||
|
||||
/// (table of InventoryObjects) table of inventory object overrides
|
||||
/// (table of @{InventoryObject}s) table of inventory object overrides
|
||||
//@mem objects
|
||||
"objects", &GameScriptLevel::InventoryObjects
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue