mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-02 23:11:32 +00:00
Mention the significance of the Name for interior cells.
This commit is contained in:
parent
f34b57656a
commit
1906410bb1
1 changed files with 14 additions and 7 deletions
|
@ -1,4 +1,3 @@
|
||||||
############
|
|
||||||
World Tables
|
World Tables
|
||||||
############
|
############
|
||||||
|
|
||||||
|
@ -126,18 +125,26 @@ Dividing an expansive world into smaller units is necessary to be able to
|
||||||
efficiently render and process it. Cells can be one of two types:
|
efficiently render and process it. Cells can be one of two types:
|
||||||
|
|
||||||
Exterior cells
|
Exterior cells
|
||||||
These represent the outside world. They all fit on a grid where cells have
|
These represent the outside world. Each exterior cell contains a part of the
|
||||||
unique coordinates and border one another. Each exterior cell contains a part of
|
terrain and together they form a seamless, continuous landmass. Entering and
|
||||||
the terrain and together they form a seamless, continuous landmass. Entering and
|
leaving these cells is as simple as walking beyond their boundary after which
|
||||||
leaving these cells is as simple as walking beyond their boundary after which we
|
we enter its neighbouring cell. It is also possible to move into another
|
||||||
enter its neighbouring cell. It is also possible to move into another interior
|
interior or exterior cell through door objects.
|
||||||
or exterior cell through door objects.
|
|
||||||
|
They all fit on a grid where cells have unique coordinates and border one
|
||||||
|
another. Their ``ID`` is based on the unique coordinates a cell takes on the
|
||||||
|
exterior world grid and they can optionally also have a ``Name``.
|
||||||
|
|
||||||
Interior cells
|
Interior cells
|
||||||
These represent enclosed spaces such as houses, dungeons, mines, etc. They
|
These represent enclosed spaces such as houses, dungeons, mines, etc. They
|
||||||
don't have a terrain, instead their whole environment is made from objects.
|
don't have a terrain, instead their whole environment is made from objects.
|
||||||
Interior cells only load when the player is in them. Entering and leaving these
|
Interior cells only load when the player is in them. Entering and leaving these
|
||||||
cells is possible through door objects or teleportation abilities.
|
cells is possible through door objects or teleportation abilities.
|
||||||
|
|
||||||
|
Due to internal workings of Morrowind, ``ID`` of interior cells is derived
|
||||||
|
from their ``Name``. This means interior cells **MUST** have a name and their
|
||||||
|
name needs to be unique. If no name is given to an interior cell, their ``ID``
|
||||||
|
will be broken and they won't show in the Cells table nor work properly in-game.
|
||||||
|
|
||||||
The Cells table provides you with a list of cells in the game and exposes
|
The Cells table provides you with a list of cells in the game and exposes
|
||||||
their various parameters to edit.
|
their various parameters to edit.
|
||||||
|
|
Loading…
Reference in a new issue