C4 Engine Terathon Software C4 Engine API Documentation

• World Manager

API Links
Developer Links

Node::EnterZone

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

virtual void EnterZone(Zone *zone);

Parameters
zone The zone being entered.
Description
The EnterZone function is called by the engine when a node is placed into a new zone. Unless the node is initially being added to the scene, a call to this function will be preceded by a call to the Node::ExitZone function for the zone that the node was previously in.
See Also

Node::ExitZone

Zone