Commit bddb9fb8 authored by hybrid's avatar hybrid

Fixed indentation.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2330 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 03cad465
......@@ -211,15 +211,17 @@ namespace scene
//! Returns whether the node should be visible (if all of its parents are visible).
/** This is only an option set by the user, but has nothing to
do with geometry culling
\return The requested visibility of the node, true means visible (if all parents are also visible). */
\return The requested visibility of the node, true means
visible (if all parents are also visible). */
virtual bool isVisible() const
{
_IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX;
return IsVisible;
}
//! Returns whether the node is truly visible, taking into accounts its parents' visibility
/** \return true if the node and all its parents are visible, false if this or any parent node is invisible. */
//! Check whether the node is truly visible, taking into accounts its parents' visibility
/** \return true if the node and all its parents are visible,
false if this or any parent node is invisible. */
virtual bool isTrulyVisible() const
{
_IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX;
......
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