Aliases

Parent: objects

Provides an alias to an existing object. To create a dagger and a knife that share the same model you could specify it as follows:

<OBJECT name="knife">

<FREEFORM filename="models/knife.ms3d" scalex="0.03" scaley="0.03" scalez="0.03"/>

</OBJECT>
<OBJECT name="dagger">

<FREEFORM filename="models/knife.ms3d" scalex="0.03" scaley="0.03" scalez="0.03"/>

</OBJECT>

If on the other hand you used aliases you'd only need to define the knife once in objectlist:


<OBJECT name="knife">

<FREEFORM filename="models/knife.ms3d" scalex="0.03" scaley="0.03" scalez="0.03" />

</OBJECT>

and then add an alias to the knife to make a dagger.


<ALIASES>

<ALIAS name="dagger" alias="knife"/>

</ALIASES>

ALIAS

List of ALIAS elements

name string
Name of the alias

alias string
Existing object in OBJECTLIST you wish to alias.