| 80 | } |
| 81 | |
| 82 | String GetObjectName(SceneObject* obj) |
| 83 | { |
| 84 | String name = obj->GetSceneObjectId().ToString(); |
| 85 | if (auto actor = ScriptingObject::Cast<Actor>(obj)) |
| 86 | name += TEXT(":") + actor->GetName(); |
| 87 | return name; |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | /// <summary> |
no test coverage detected