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

Method ToString

Source/Engine/Scripting/BinaryModule.cpp:52–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50}
51
52String ScriptingTypeHandle::ToString(bool withAssembly) const
53{
54 String result = GetType().ToString();
55 if (withAssembly)
56 {
57 result += TEXT("(module ");
58 result += String(Module->GetName());
59 result += TEXT(")");
60 }
61 return result;
62}
63
64const ScriptingType& ScriptingTypeHandle::GetType() const
65{

Callers 4

ManagedObjectSpawnMethod · 0.45
OnLoadedMethod · 0.45
InitTypeMethod · 0.45
InvokeMethodMethod · 0.45

Calls 5

GetTypeFunction · 0.85
StringFunction · 0.50
GetNameMethod · 0.45
GetMethod · 0.45
LengthMethod · 0.45

Tested by

no test coverage detected