このページでは、UI Toolkit でイベントシステムや入力システムを使用する際によくある質問を掲載しています。
これには 2 つの方法があります。
最初の方法
Add an Event System component in your scene the same way as you create GameObject-based UI content from the com.unity.uGUI
package.
Use the EventSystem.current.IsPointerOverGameObject
method, which returns true
if the pointer is over UI content from either uGUI or from UI Toolkit.
Use the EventSystem.current.RaycastAll
method to see what visual element is under the mouse.
交差した UI Toolkit パネルは、ゲームオブジェクトを通して Event System の環境に表示されます。
PanelRaycaster
と PanelEventHandler
があります。どちらのコンポーネントも、ターゲットとする IPanel
を返す panel
プロパティを持っています。After you find the panel under the pointer, call the panel.Pick
method to find what visual element lies at the pointer’s position.
RuntimePanelUtils.ScreenToPanel
メソッドを使用して、ポインターのスクリーン座標をパネル座標に変換する必要があります。
uGUI のスクリーン座標系は左下の原点を使用しますが、UI Toolkit のスクリーン座標は左上から表現されます。2 つのシステム間で変換するには、yTopLeft = Screen.height - yBottomLeft
で Y 座標をミラーリングするか、その逆を行う必要があります。
第 2 の方法
UIDocument.rootVisualElement
プロパティを使用して、ポインターの下にあるすべてのランタイムパネルのリストを取得します。panel.Pick
on each of them successively until you find one that returns a visual element.基本的な UI アクションを再マップするには、以下を行います。
com.unity.uGUI
package.ノート: Tab 入力と Shift+Tab 入力にマップされたアクションは、イベントシステムの入力モジュールを通して公開されていないため、再マップすることはできません。
方向ナビゲーションは、デフォルトのターゲット以外にも設定できます。
次のコード例では、要素 A が上下左右に移動するときに、それぞれ要素 U、D、L、R に移動することが可能です。
A.RegisterCallback <NavigationMoveEvent>(e =>
{
switch(e.direction)
{
case NavigationMoveEvent.Direction.Up: U.Focus(); break;
case NavigationMoveEvent.Direction.Down: D.Focus(); break;
case NavigationMoveEvent.Direction.Left: L.Focus(); break;
case NavigationMoveEvent.Direction.Right: R.Focus(); break;
}
e.PreventDefault();
});
Yes. You can use the EventSystem’s StandaloneInputModule or InputSystemUIInputModule fields in the Inspector window to control what input maps to each action. However, since these actions are shared with uGUI input, this also changes the uGUI controls.
To remap UI Toolkit inputs without affecting uGUI controls, disable UI Toolkit’s runtime event handling and send all events manually to panels. To do so, call EventSystem.SetUITookitEventSystemOverride(null, true, false);
before the start method of your current EventSystem kicks in, such as the Awake
method of the component of your scene. For more information about this uGUI method, see SetUITookitEventSystemOverride.
It’s possible that no element or panel is in focus at a given time, such as when loading your game scene for the first time. In this case, keyboard navigation doesn’t start from a predictable first element. This can be a problem for a game that plays entirely without a mouse.
最初から予測可能なナビゲーション動作ができるようにするには C# スクリプトを加えて、スクリプトを、最初のフォーカスを得るように選択した要素を処理する UIDocument と同じゲームオブジェクトにアタッチします。
Assume your script is named FirstFocus
and your initial focused element is named as first-focused
. In your script’s Start()
method, add a line to focus that element as the following:
public class FirstFocus : MonoBehaviour
{
void Start()
{
FocusFirstElement();
}
public void FocusFirstElement()
{
GetComponent<UIDocument>().rootVisualElement.
Q<VisualElement>("first-focused").Focus();
}
}
Note: If you disable the UIDocument’s GameObject, all its underlying hierarchy is recreated from scratch. Therefore, you must run your custom FocusFirstElement()
method again after you re-enable the GameObject.