Unity Project

reference
https://cardgames.io/yahtzee/
This commit is contained in:
mcutegs2
2020-07-21 15:43:56 +09:00
commit 42edc18e4e
4081 changed files with 189452 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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;
}
}
}