版本:Unity 6 (6000.0)
语言英语
  • C#

EditorWindow.wantsMouseMove

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每项更改建议,并在适用时进行更新。

关闭

提交失败

由于某些原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public bool wantsMouseMove;

描述

检查此编辑器窗口中的 GUI 是否接收 MouseMove 事件。




当启用切换按钮且鼠标悬停在窗口上时,检测鼠标移动的编辑器窗口。

// Editor Script that shows the mouse movement events captured.
// "Mouse Position" shows where the mouse is outside of the window.

using UnityEditor;
using UnityEngine;
using System.Collections;
using UnityEngine.UIElements;

public class PointerMove : EditorWindow
{
    [MenuItem("Examples/Mouse Move Example")]
    static void InitWindow()
    {
        PointerMove window = (PointerMove)GetWindowWithRect(typeof(PointerMove), new Rect(0, 0, 300, 100));
        window.Show();
    }

    Label m_PointerPosition;

    void CreateGUI()
    {
        rootVisualElement.pickingMode = PickingMode.Position;

        // Create a toggle button that toggles the value of wantsMouseMove
        var toggle = new Toggle
        {
            text = "Receive Movement"
        };
        wantsMouseMove = toggle.value;
        rootVisualElement.Add(toggle);

        m_PointerPosition = new Label();
        rootVisualElement.Add(m_PointerPosition);
        
        toggle.RegisterValueChangedCallback((evt) =>
        {
            if (evt.newValue)
                rootVisualElement.RegisterCallback<PointerMoveEvent>(LogPointerMoved);
            else
                rootVisualElement.UnregisterCallback<PointerMoveEvent>(LogPointerMoved);
        });
    }

    void LogPointerMoved(PointerMoveEvent evt)
    {
        m_PointerPosition.text = $"Pointer Position: {evt.position}";
    }
}