MCPcopy Create free account
hub / github.com/carbonengine/trinity / StartControllers

Method StartControllers

trinity/Eve/SpaceObject/EveSpaceObject2.cpp:3794–3809  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3792}
3793
3794void EveSpaceObject2::StartControllers()
3795{
3796 for( auto it = begin( m_controllers ); it != end( m_controllers ); ++it )
3797 {
3798 ( *it )->Start();
3799 }
3800 for( auto it = begin( m_effectChildren ); it != end( m_effectChildren ); ++it )
3801 {
3802 auto child = *it;
3803 child->StartControllers();
3804 }
3805 for( auto it = begin( m_overlayEffects ); it != end( m_overlayEffects ); ++it )
3806 {
3807 ( *it )->StartControllers();
3808 }
3809}
3810
3811std::map<std::string, float> EveSpaceObject2::GetControllerVariables() const
3812{

Callers

nothing calls this directly

Calls 3

beginFunction · 0.50
endFunction · 0.50
StartMethod · 0.45

Tested by

no test coverage detected