Documentation Index
Fetch the complete documentation index at: https://mintlify.com/BunnyNabbit/celaria-formats/llms.txt
Use this file to discover all available pages before exploring further.
TutorialHologram is a display object used in tutorial levels to render instructional holograms in the game world. It carries a type identifier that determines which hologram is shown, along with the standard transform properties — position, scale, and rotation. TutorialHologram extends Instance and has an instanceId of 128.
Constructor
The hologram type identifier. This value determines which instructional hologram is displayed in-game. There is no default —
type must always be provided.Properties
World-space position of the hologram, inherited from
Instance. Defaults to [0, 0, 0]. Z is the gravity axis.The display scale of the hologram along each axis. Defaults to
[0, 0, 0].Rotation of the hologram around the Z axis, in radians. Defaults to
0.The hologram type identifier passed to the constructor. This value selects which instructional content is rendered by the game engine.
Getters
Always returns
128. Used during binary serialization to identify this object as a TutorialHologram.Example
Placing a tutorial hologram in a map
Reading holograms from a parsed map
Related
Instance
Abstract base class that TutorialHologram extends.
Map objects guide
Overview of all map object types and how to use them.
Block
Rectangular geometry block used to build level structure.
Types reference
Vector3 and other type definitions.