| 31 | #if USE_EDITOR |
| 32 | |
| 33 | void Animation::OnScriptsReloadStart() |
| 34 | { |
| 35 | for (auto& e : Events) |
| 36 | { |
| 37 | for (auto& k : e.Second.GetKeyframes()) |
| 38 | Level::ScriptsReloadRegisterObject((ScriptingObject*&)k.Value.Instance); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | #endif |
| 43 |
nothing calls this directly
no test coverage detected