| Table of Contents | ||
|
|
||
| RemoveObject | ||
|
Purpose Removes a given object from current scene |
||
|
Protoype void CSceneMngr::RemoveObject (int i_layer) |
||
|
Parameters
|
||
|
Description This overloaded function removes an object from the scene based on its layer. The object will be disassociated from the scene but not removed completely.
|
||
|
Use CSceneMngr scene; // remove layer 6 from the scene scene.RemoveObject(6); |
||
|
|
||
|