MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / OnKeyDown

Method OnKeyDown

Source/Editor/GUI/Docking/DockWindow.cs:495–503  ·  view source on GitHub ↗

(KeyboardKeys key)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 1

ProcessMethod · 0.45

Tested by

no test coverage detected