mirror of
https://github.com/maxartz15/UnitySerializedReferenceUI.git
synced 2024-11-22 15:45:35 +01:00
20 lines
608 B
C#
20 lines
608 B
C#
#if UNITY_EDITOR
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
public static class SerializeReferenceInspectorMiddleMouseMenu
|
|
{
|
|
public static void ShowContextMenuForManagedReferenceOnMouseMiddleButton(this SerializedProperty property, Rect position, IEnumerable<Func<Type, bool>> filters = null)
|
|
{
|
|
Event e = Event.current;
|
|
if (e.type != EventType.MouseDown || !position.Contains(e.mousePosition) || e.button != 2)
|
|
{
|
|
return;
|
|
}
|
|
|
|
property.ShowContextMenuForManagedReference(filters);
|
|
}
|
|
}
|
|
#endif |