mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
19 lines
646 B
C#
19 lines
646 B
C#
using System;
|
|
using UnityEngine;
|
|
using Object = UnityEngine.Object;
|
|
|
|
namespace UnityEditor.Timeline
|
|
{
|
|
static class UnityEditorInternals
|
|
{
|
|
public static Object DoObjectField(Rect position, Object obj, Type type, int controlId, bool allowScene)
|
|
{
|
|
#if UNITY_2020_1_OR_NEWER
|
|
var newObject = EditorGUI.DoObjectField(position, position, controlId, obj, null, type, null, allowScene, EditorStyles.objectField);
|
|
#else
|
|
var newObject = EditorGUI.DoObjectField(position, position, controlId, obj, type, null, null, allowScene, EditorStyles.objectField);
|
|
#endif
|
|
return newObject;
|
|
}
|
|
}
|
|
}
|