* Handles the current selection. * * @private
()
| 126 | */ |
| 127 | |
| 128 | handleSelection() { |
| 129 | |
| 130 | const selection = this.effect.selection; |
| 131 | const selectedObject = this.selectedObject; |
| 132 | |
| 133 | if(selectedObject !== null) { |
| 134 | |
| 135 | selection.toggle(selectedObject); |
| 136 | |
| 137 | } |
| 138 | |
| 139 | } |
| 140 | |
| 141 | handleEvent(event) { |
| 142 |