MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / FindMethod

Method FindMethod

Source/Engine/Scripting/BinaryModule.cpp:34–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34MMethod* MClass::FindMethod(const char* name, int32 numParams, bool checkBaseClasses) const
35{
36 MMethod* method = GetMethod(name, numParams);
37 if (!method && checkBaseClasses)
38 {
39 MClass* base = GetBaseClass();
40 if (base)
41 method = base->FindMethod(name, numParams, true);
42 }
43 return method;
44}
45
46ScriptingTypeHandle::ScriptingTypeHandle(const ScriptingTypeInitializer& initializer)
47 : Module(initializer.Module)

Callers 1

TickMethod · 0.45

Calls 5

FindMethodFunction · 0.70
CountMethod · 0.45
GetMethodMethod · 0.45
GetTypeMethod · 0.45
GetMethod · 0.45

Tested by

no test coverage detected