| 51 | #if USE_EDITOR |
| 52 | |
| 53 | void 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 | |
| 65 | void SceneTicking::TickData::TickExecuteInEditor() |
| 66 | { |