- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
TL;DR:如何使用矢量实现 Unity 的“屏幕颜色”功能?
<小时/>好吧,对于我想要做的事情来说,标题已经相当简化了:
让用户单击一个按钮,然后单击屏幕上的一个位置,将该[世界]位置保存为矢量。 - 这基本上是有效的,只是它不会检测到检查器之外的左键单击。
禁用统一编辑器上其他所有内容的左键单击(因此,当您单击某个位置时,它不会将焦点更改为另一个游戏对象)。 - 这是主要问题。
跟踪鼠标并获取世界位置非常简单,如果正在跟踪鼠标,则保存一个 bool 值,并保存一个 SerializedProperty 来保存鼠标位置要保存到的值。
这是我的属性:
public class VectorPickerAttribute : PropertyAttribute {
readonly bool relative;
/// <summary>
/// Works a lot like the color picker, except for vectors.
/// </summary>
/// <param name="relative">Make the final vector relative to the transform?</param>
public VectorPickerAttribute(bool relative = false) {
this.relative = relative;
}
}
这是 PropertyDrawer:
[CustomPropertyDrawer(typeof(VectorPickerAttribute))]
public class VectorPickerDrawer : PropertyDrawer {
bool trackMouse = false;
SerializedProperty v;
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) {
if(property.propertyType == SerializedPropertyType.Vector2) {
Rect button = new Rect(position);
button.x = position.width - 2;
button.width = position.height;
bool pressed = GUI.Button(button, "");
if(pressed) {
trackMouse = true;
v = property;
}
else if(Input.GetMouseButtonDown(0)) trackMouse = false;
bool tracking = trackMouse && v.propertyPath == property.propertyPath;
if(tracking) {
property.vector2Value =
Camera.main.ScreenToWorldPoint(
GUIUtility.GUIToScreenPoint(
Event.current.mousePosition
));
}
GUI.enabled = !tracking;
EditorGUI.Vector2Field(position, label.text, property.vector2Value);
GUI.enabled = true;
EditorUtility.SetDirty(property.serializedObject.targetObject);
}
}
}
这是迄今为止它所做的事情:
您单击右侧的按钮,它会将矢量更新为鼠标位置,直到使用 Input.GetMouseButtonDown(0)
检测到左键单击。
问题:
它只会检测实际位于检查器窗口上的点击。
当您在检查器窗口外部单击时,它要么不会更改任何内容,要么会选择其他内容,因此它将关闭检查器(但由于它每次 OnGUI()
都会保存鼠标位置你点击的那个点将被保存到向量中,所以我想它可以工作??)。
我尝试用空白窗口覆盖屏幕,但无法让 GUI.Window
或 GUI.ModalWindow
在 PropertyDrawer 中执行任何操作。我也尝试过使用 GUI.UnfocusWindow()
,但要么它在 PropertyDrawer 中不起作用,要么它仅适用于 Unity 的窗口或其他东西。
最佳答案
核心方面:
覆盖 SceneView.onSceneGUIDelegate
以捕获 SceneView 上的任何鼠标事件
使用ActiveEditorTracker.sharedTracker.isLocked
锁定和解锁检查器以防止失去焦点(这将导致OnGUI
不再被调用)
使用Selection.activeGameObject
并将其设置为抽屉所在的游戏对象,以防止失去对游戏对象的焦点(尤其是在ActiveEditorTracker. SharedTracker.isLocked
设置为 false 似乎会自动清除 Selection.activeGameObject
)
允许使用Escape键将值恢复为之前的值
使用Event.current.Use();
和/或Event.current = null;
(我只是想非常确定)以防止事件传播并被其他人处理
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// Attribute for setting a vector by clicking on the screen in editor mode.
/// </summary>
public class VectorPickerAttribute : PropertyAttribute {
public readonly bool relative;
/// <summary>Works a lot like the color picker, except for vectors.</summary>
/// <param name="relative">Make the final vector relative the transform?</param>
public VectorPickerAttribute(bool relative = false) {
this.relative = relative;
}
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
[CustomPropertyDrawer(typeof(VectorPickerAttribute))]
public class VectorPickerDrawer : PropertyDrawer {
#region Variables
bool _trackMouse;
SerializedProperty _property;
MonoBehaviour script;
///<summary>Keep the currently selected object to avoid loosing focus while/after tracking</summary>
GameObject _mySelection;
///<summary>For reverting if tracking canceled</summary>
Vector2 _originalPosition;
///<summary>Flag for doing Setup only once</summary>
bool _setup;
/// <summary>Mouse position from scene view into the world.</summary>
Vector2 worldPoint;
#endregion
/// <summary>
/// Catch a click event while over the SceneView
/// </summary>
/// <param name="sceneView">The current scene view => might not work anymore with multiple SceneViews</param>
private void UpdateSceneView(SceneView sceneView) {
Camera cam = SceneView.lastActiveSceneView.camera;
worldPoint = Event.current.mousePosition;
worldPoint.y = Screen.height - worldPoint.y - 36.0f; // ??? Why that offset?!
worldPoint = cam.ScreenToWorldPoint(worldPoint);
VectorPickerAttribute vectorPicker = attribute as VectorPickerAttribute;
if(script != null && vectorPicker.relative) worldPoint -= (Vector2)script.transform.position;
// get current event
var e = Event.current;
// Only check while tracking
if(_trackMouse) {
if((e.type == EventType.MouseDown || e.type == EventType.MouseUp) && e.button == 0) {
OnTrackingEnds(false, e);
}
else {
// Prevent losing focus
Selection.activeGameObject = _mySelection;
}
}
else {
// Skip if event is Layout or Repaint
if(e.type == EventType.Layout || e.type == EventType.Repaint) return;
// Prevent Propagation
Event.current.Use();
Event.current = null;
// Unlock Inspector
ActiveEditorTracker.sharedTracker.isLocked = false;
// Prevent losing focus
Selection.activeGameObject = _mySelection;
// Remove SceneView callback
SceneView.onSceneGUIDelegate -= UpdateSceneView;
}
}
/// <summary>
/// Called when ending Tracking
/// </summary>
/// <param name="revert">flag whether to revert to previous value or not</param>
/// <param name="e">event that caused the ending</param>
/// <returns>Returns the vector value of the property that we are modifying.</returns>
private Vector2 OnTrackingEnds(bool revert, Event e) {
e.Use();
Event.current = null;
//Debug.Log("Vector Picker finished");
if(revert) {
// restore previous value
_property.vector2Value = _originalPosition;
//Debug.Log("Reverted");
}
// disable tracking
_trackMouse = false;
// Apply changes
_property.serializedObject.ApplyModifiedProperties();
return _property.vector2Value;
}
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) {
script = (MonoBehaviour)property.serializedObject.targetObject;
if(property.propertyType != SerializedPropertyType.Vector2) {
EditorGUI.HelpBox(position, "This Attribute requires Vector2", MessageType.Error);
return;
}
var e = Event.current;
if(!_setup) {
// store the selected Object (should be the one with this drawer active)
_mySelection = Selection.activeGameObject;
_property = property;
_setup = true;
}
// load current value into serialized properties
_property.serializedObject.Update();
//specific to the ONE property we are updating
bool trackingThis = _trackMouse && property.propertyPath == _property.propertyPath;
GUI.enabled = !trackingThis;
EditorGUI.PropertyField(position, property, label);
GUI.enabled = true;
// Write manually changed values to the serialized fields
_property.serializedObject.ApplyModifiedProperties();
if(!trackingThis) {
var button = new Rect(position) {
x = position.width - 2,
width = position.height
};
// if button wasn't pressed do nothing
if(!GUI.Button(button, "")) return;
// store current value in case of revert
_originalPosition = _property.vector2Value;
// enable tracking
_property = property;
_trackMouse = true;
// Lock the inspector so we cannot lose focus
ActiveEditorTracker.sharedTracker.isLocked = true;
// Prevent event propagation
e.Use();
//Debug.Log("Vector Picker started");
return;
}
// <<< This section is only reached if we are in tracking mode >>>
// Overwrite the onSceneGUIDelegate with a callback for the SceneView
SceneView.onSceneGUIDelegate = UpdateSceneView;
// Set to world position
_property.vector2Value = worldPoint;
// Track position until either Mouse button 0 (to confirm) or Escape (to cancel) is clicked
var mouseUpDown = (e.type == EventType.MouseUp || e.type == EventType.MouseDown) && e.button == 0;
if(mouseUpDown) {
// End the tracking, don't revert
property.vector2Value = OnTrackingEnds(false, e);
}
else if(e.type == EventType.KeyUp && _trackMouse && e.keyCode == KeyCode.Escape) {
// Cancel tracking via Escape => revert value
property.vector2Value = OnTrackingEnds(true, e);
}
property.serializedObject.ApplyModifiedProperties();
//This fixes "randomly stops updating for no reason".
EditorUtility.SetDirty(property.serializedObject.targetObject);
}
}
我试图解释评论中的所有内容。当然这仍然有一些缺陷,在某些特殊情况下可能不起作用,但我希望它能朝着正确的方向发展。
关于unity-game-engine - 如何使用自定义编辑器属性从任何地方获取屏幕点击输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53120463/
当点击content 时,我想触发我的alert。我的 content 中可以有任意数量的子元素,所以我不想对每个元素都进行硬编码。我想也许我可以监听对该父元素的点击,然后每次点击子元素都会触发我的操
对于 Mac 应用程序,我想检测应用程序中的用户事件,因此我可以定期让 Web 服务知道用户在端点上仍然处于事件状态。 在 Cocoa Touch 中,我会覆盖 UIApplication 的 sen
第一次在这里发帖,但天知道我一直使用这个网站来搜索问题 :P 好吧,我现在遇到了自己的问题,我似乎无法轻松地在 Google 上搜索,在玩了大约 2 小时后,我终于决定发布一个问题,看看你们是怎么想的
Angular 触控 ngTouch导致在触摸释放时发生点击。 有没有办法让点击发生在触摸开始? fast-click下面的指令似乎可以在触摸屏上执行我想要的操作,但它不适用于鼠标点击。 myApp.
1) 如果我有这个,当我点击子 Container 时它不会打印'tap': Container( color: Colors.red, child: GestureDetector(
我简直要发疯了,只是想从 jQuery 中的事件中解除 onclick 处理程序的绑定(bind),以便稍后可以将其绑定(bind)到另一个函数。 我已将代码隔离在测试页中,因此除了核心之外什么都没有
我有一个有趣的情况。我需要触发实时点击,因为简单的点击不起作用。 这就是我所拥有的: $('.text').trigger('click'); 但我需要这样的东西: $('.text').trigge
这是我的作业,这是我第一次做表单验证。以下代码分别是我的HTML代码和JavaScript代码。 HTML 代码: First N
正如标题所示,如何获取 Magento 中特定产品的浏览量/点击量/展示次数。欢迎任何帮助。 最佳答案 这个简单的示例将为您提供在您指定的日期+其查看次数之间查看过的产品列表: $fromDate =
我正在创建一个应用程序,但在其中遇到错误。我想在按钮上添加 OnclickListner。该按钮位于 fragment 类上。从这个 fragment 类我想继续另一个类。代码如下: fragment
我在数组中有一些值。首先,我想在 View 中显示该数组的前两个值,接下来我想在某些按钮单击操作后显示剩余的值,并将数组索引增加 1。例如:一次点击显示第三个值,然后另一次点击显示第四个值。 我怎样才
在下面的代码片段中,如果在链接上执行“CMD+CLICK”,则不会显示 alert('CMD')。这是为什么? 我想在用户按下 CMD 按钮(或 Windows 上的 CTRL 键)+单击 href
我希望在单击链接时开始加载一些内容。在单击该链接之前,我不希望它使用任何带宽。另外如何实现几乎所有灯箱中都能看到的旋转光标动画? 最佳答案 使用$.ajax()函数动态加载内容。 对于动画,请找到一个
我有如下的 DOM: users 当用户点击按钮时,它会将新的“td”附加到“tr”。它运作良好。问题:单击“a”我想打开两个链接。最好的方法是首先将当前页面重定向到另一个页面,然后
这是我正在尝试做的.. 点击按钮会显示一个随机数组项。 数组项只能显示一次。 目前我已经将代码设置为: 点击随机数组项显示。 按钮点击继续循环,没有结束。 按钮点击多次显示元素。 这是代码的链接 ht
我想创建...基本上是一个宏程序。点击记录后,它会记录所有鼠标(可能最终是键盘)事件。然后你可以保存,然后播放,鼠标应该移动并点击在相同的地方当你录制它时它会发生。 我知道如何获取全局鼠标事件,但我不
我有一个关于将 onClick 添加到 ListView 的问题,我已经尝试尽可能多地遵循 Android NotePad 教程,但是对于我的布局我不太明白如何添加它。 这是 Activity 类,它
我正在使用一个网站以表格的形式显示信息。用户可以单击表格中的行来更改它们的颜色,我还有一个按钮允许用户暂停页面的刷新,这样就不会添加新信息。这两个功能都适用于桌面,但不适用于触摸屏。我的第一个想法是触
所以我的网站上有一个正常的链接,我想为它添加跟踪。我可以设想很多方法来做到这一点,但我已经确定通过编写一个小的 jquery 函数并在我的标签中放置一个小片段来实现这一点非常简单: click me!
我正在尝试使我的图片按钮看起来不错。我尝试了几种不同的方法,但它们看起来都不对。这是一个圆形图像,我想让它看起来像是可以按下的。这是我到目前为止所得到的。 android:textAppearance
我是一名优秀的程序员,十分优秀!