| 261 | } |
| 262 | |
| 263 | std::filesystem::path SceneGraphNode::GetPath() const |
| 264 | { |
| 265 | std::filesystem::path path = GetName(); |
| 266 | |
| 267 | SceneGraphWalker walker(GetParent(), nullptr); |
| 268 | while (walker) |
| 269 | { |
| 270 | path = walker->GetName() / path; |
| 271 | walker.Up(); |
| 272 | } |
| 273 | |
| 274 | return "/" / path; |
| 275 | } |
| 276 | |
| 277 | void SceneGraphNode::InvalidateContent() |
| 278 | { |