MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / isEnabled

Method isEnabled

Engine/source/Verve/Core/VObject.cpp:102–111  ·  view source on GitHub ↗

----------------------------------------------------------------------------- VObject::isEnabled(); Returns whether this object is enabled. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

100//
101//-----------------------------------------------------------------------------
102bool VObject::isEnabled( void )
103{
104 VObject *parent = dynamic_cast<VObject*>( getParent() );
105 if ( parent && !parent->isEnabled() )
106 {
107 return false;
108 }
109
110 return mEnabled;
111}
112
113//-----------------------------------------------------------------------------
114//

Callers 15

solveSingleIterationMethod · 0.45
solveSingleIterationMethod · 0.45
isPostEffectEnabledMethod · 0.45
setActiveGroupMethod · 0.45
updateNextEventMethod · 0.45
setShaderParamsMethod · 0.45
_setFullReflectMethod · 0.45
unpackUpdateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected