Set the current component mode to
| 232 | |
| 233 | // Set the current component mode to <mode> |
| 234 | void RadiantSelectionSystem::SetComponentMode(ComponentSelectionMode mode) |
| 235 | { |
| 236 | if (_componentMode != mode) |
| 237 | { |
| 238 | _componentMode = mode; |
| 239 | |
| 240 | _sigComponentModeChanged.emit(_componentMode); |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | // returns the current component mode |
| 245 | ComponentSelectionMode RadiantSelectionSystem::ComponentMode() const |