| 336 | } |
| 337 | |
| 338 | void Scripting::InvokeOnUpdate(const Function<void()>& action) |
| 339 | { |
| 340 | _objectsLocker.Lock(); |
| 341 | UpdateActions.Add(action); |
| 342 | _objectsLocker.Unlock(); |
| 343 | } |
| 344 | |
| 345 | bool Scripting::LoadBinaryModules(const String& path, const String& projectFolderPath) |
| 346 | { |
no test coverage detected