Commit 7d44da69 authored by cutealien's avatar cutealien

Improve documentation.


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4702 dfc29bdd-3216-0410-991c-e03cc46cb475
parent f4fbe1b5
...@@ -539,12 +539,12 @@ namespace scene ...@@ -539,12 +539,12 @@ namespace scene
} }
//! Enables or disables automatic culling based on the bounding box. //! Set a culling style or disable culling completely.
/** Automatic culling is enabled by default. Note that not /** Box cullling (EAC_BOX) is set by default. Note that not
all SceneNodes support culling and that some nodes always cull all SceneNodes support culling and that some nodes always cull
their geometry because it is their only reason for existence, their geometry because it is their only reason for existence,
for example the OctreeSceneNode. for example the OctreeSceneNode.
\param state The culling state to be used. */ \param state The culling state to be used. Check E_CULLING_TYPE for possible values.*/
void setAutomaticCulling( u32 state) void setAutomaticCulling( u32 state)
{ {
AutomaticCullingState = state; AutomaticCullingState = state;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment