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

Method IsStatic

Source/Engine/Scripting/ManagedCLR/MCore.cpp:295–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

293}
294
295bool MProperty::IsStatic() const
296{
297 if (GetGetMethod())
298 {
299 return GetGetMethod()->IsStatic();
300 }
301 if (GetSetMethod())
302 {
303 return GetSetMethod()->IsStatic();
304 }
305 return false;
306}
307
308void MCore::OnManagedEventAfterShutdown(const char* eventName)
309{

Callers 13

FindMethodFunction · 0.80
OnLoadedMethod · 0.80
InvokeMethodMethod · 0.80
GetMethodSignatureMethod · 0.80
GetFieldSignatureMethod · 0.80
GetFieldValueMethod · 0.80
SetFieldValueMethod · 0.80
IsStaticFunction · 0.80
GetMethodMethod · 0.80
OnAssemblyLoadedMethod · 0.80
FindDebugCommandsFunction · 0.80
IsDynamicSkyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected