FlameNode

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search

This is a system for adding sub-objects, usually particle flames, on to other geometry. The particles can be added through scripting based on a number of conditions. The script can check to see if the object can have FlameNode attachments by checking CanHaveFlames. It can also check to see if the object already has FlameNodes attached by checking HasFlames. If the CanHaveFlames condition returns true then the flames can be added with the AddFlames function or removed with the RemoveFlames function.


The TES Construction Set has 21 (FlameNode0 - FlameNode20) default FlameNode static objects that can be used to point to sub-object geometry. This example also has an EditorMarker so the FlameNode could also be placed by itself in the TES Construction Set.
FlameNode sub-object

This is an example of the base object that will have nine (FlameNode0) sub-objects added to it at load time in the game. The node names for the base object must start with FlameNode0 - FlameNode9 and FlameNodeA - FlameNodeK. The rest of the name is ignored and can be whatever you want. FlameNodeA - K are used to access the static sub-objects FlameNode10 - FlameNode20.
FlameNode object

This is an example of calling AddFlames and RemoveFlames in a script.
CanHaveFlames = 1, HasFlames = 0 CanHaveFlames = 1, HasFlames = 1

See Also[edit | edit source]

CanHaveFlames
HasFlames
AddFlames
RemoveFlames