| 935 | } |
| 936 | |
| 937 | void RadiantSelectionSystem::onPreRender(const VolumeTest& volume) |
| 938 | { |
| 939 | if (!nothingSelected()) |
| 940 | { |
| 941 | auto renderSystem = GlobalMapModule().getRoot()->getRenderSystem(); |
| 942 | |
| 943 | if (renderSystem) |
| 944 | { |
| 945 | _activeManipulator->onPreRender(renderSystem, volume); |
| 946 | } |
| 947 | else |
| 948 | { |
| 949 | _activeManipulator->clearRenderables(); |
| 950 | } |
| 951 | } |
| 952 | else |
| 953 | { |
| 954 | _activeManipulator->clearRenderables(); |
| 955 | } |
| 956 | } |
| 957 | |
| 958 | void RadiantSelectionSystem::onSceneBoundsChanged() |
| 959 | { |
nothing calls this directly
no test coverage detected