Expose an IsFocused property

Issue #190 resolved
Former user created an issue

Checking if the focus is on the input field seems like a common need as it allows the console's users to filter gameplay inputs when the console is being used. IsActive isn't enough for this as testing the game while the console is open is also a common need.

The easy solution is to expose a property like this:

bool IsFocused { get { return IsActive && _consoleInput.isFocused; } }

Comments (1)

  1. Log in to comment