MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / isMethod

Method isMethod

Engine/source/console/simObject.cpp:799–810  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

797//-----------------------------------------------------------------------------
798
799bool SimObject::isMethod( const char* methodName )
800{
801 if( !methodName || !methodName[0] )
802 return false;
803
804 StringTableEntry stname = StringTable->insert( methodName );
805
806 if( getNamespace() )
807 return ( getNamespace()->lookup( stname ) != NULL );
808
809 return false;
810}
811
812//-----------------------------------------------------------------------------
813

Callers 15

guiFormClass.ed.csFile · 0.80
ContextDialogWatcherFunction · 0.80
GuiFormManagerFunction · 0.80
GuiFormManagerFunction · 0.80
ProjectBaseFunction · 0.80
EditorGuiFunction · 0.80
creator.ed.csFile · 0.80
WorldEditorFunction · 0.80
spawn.csFile · 0.80

Calls 2

insertMethod · 0.45
lookupMethod · 0.45

Tested by 2

constructEditControlMethod · 0.64
addInspectObjectMethod · 0.64