C4 Engine Terathon Software C4 Engine API Documentation

• World Manager

API Links
Developer Links

Node::ExitZone

Defined in:  C4Node.h
Called when a node exits a zone.
Prototype

virtual void ExitZone(Zone *zone);

Parameters
zone The zone being exited.
Description
The ExitZone function is called by the engine when a node is removed from a zone. Unless the node is being destroyed, a call to this function will be followed by a call to the Node::EnterZone function for the new zone that the node is being placed in.
See Also

Node::EnterZone

Zone