| 426 | |
| 427 | |
| 428 | void TreeParent::StyledRender(DrawingContext& context) |
| 429 | { |
| 430 | if (BeginRender(context)) { |
| 431 | for (auto childHandle : Children) { |
| 432 | auto child = Manager->GetRenderable(childHandle); |
| 433 | if (child) { |
| 434 | child->Render(context); |
| 435 | } |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | EndRender(context); |
| 440 | } |
| 441 | |
| 442 | |
| 443 | lua::ImguiHandle TreeParent::AddGroup(char const* label) |
nothing calls this directly
no test coverage detected