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

Method RemoveTickExecuteInEditor

Source/Engine/Level/Scene/SceneTicking.cpp:53–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51#if USE_EDITOR
52
53void SceneTicking::TickData::RemoveTickExecuteInEditor(void* callee)
54{
55 for (int32 i = 0; i < TicksExecuteInEditor.Count(); i++)
56 {
57 if (TicksExecuteInEditor.Get()[i].Callee == callee)
58 {
59 TicksExecuteInEditor.RemoveAt(i);
60 break;
61 }
62 }
63}
64
65void SceneTicking::TickData::TickExecuteInEditor()
66{

Callers 1

OnDisableMethod · 0.80

Calls 3

CountMethod · 0.45
GetMethod · 0.45
RemoveAtMethod · 0.45

Tested by

no test coverage detected