LABEL

Description :

The object label displays a text at a certain position. The set of displayable chars is limited, but should be sufficient for the most uses.


Parameter :

Variable Type Valeur par défaut Description
Text String - Determines the text of the label.
Color Color < 0.2, 0.2, 0.2 > Determines the color of the label.
Draw Draw Close Draw style.
See Type for more information.
Position < 0.0, 0.0, 0.0 > - Determines the position of the label.

Example :

Scene label
{
    Label {
        Color <1.0,0.0,0.0>
        Text "Ich bin ein Label"
        Position <0.0,1.0,0.0>
    }
}
Show label