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

Method RemoveTick

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

Source from the content-addressed store, hash-verified

29}
30
31void SceneTicking::TickData::RemoveTick(void* callee)
32{
33 for (int32 i = 0; i < Ticks.Count(); i++)
34 {
35 if (Ticks.Get()[i].Callee == callee)
36 {
37 Ticks.RemoveAt(i);
38 break;
39 }
40 }
41}
42
43void SceneTicking::TickData::Tick()
44{

Callers 6

OnDisableMethod · 0.80
OnDisableMethod · 0.80
OnDisableMethod · 0.80
OnDisableMethod · 0.80
OnDisableMethod · 0.80
OnDisableMethod · 0.80

Calls 3

CountMethod · 0.45
GetMethod · 0.45
RemoveAtMethod · 0.45

Tested by

no test coverage detected