(KeyboardKeys key)
| 493 | |
| 494 | /// <inheritdoc /> |
| 495 | public override bool OnKeyDown(KeyboardKeys key) |
| 496 | { |
| 497 | // Base |
| 498 | if (base.OnKeyDown(key)) |
| 499 | return true; |
| 500 | |
| 501 | // Custom input events |
| 502 | return InputActions.Process(Editor.Instance, this, key); |
| 503 | } |
| 504 | |
| 505 | /// <inheritdoc /> |
| 506 | protected override void PerformLayoutBeforeChildren() |