mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-26 10:03:10 +08:00
Add support for Constructors in Reflection Inspector
- Added CacheConstructor : CacheMember - Changed default scope to "All" from "Instance" when inspecting an instance - Bumped UniverseLib
This commit is contained in:
@ -12,6 +12,7 @@ using UniverseLib.UI;
|
||||
using UniverseLib;
|
||||
using UnityExplorer.CacheObject;
|
||||
using UniverseLib.UI.ObjectPool;
|
||||
using UniverseLib.Utility;
|
||||
|
||||
namespace UnityExplorer.UI.Widgets
|
||||
{
|
||||
@ -76,6 +77,9 @@ namespace UnityExplorer.UI.Widgets
|
||||
|
||||
public object[] TryParseArguments()
|
||||
{
|
||||
if (!parameters.Any())
|
||||
return ArgumentUtility.EmptyArgs;
|
||||
|
||||
object[] outArgs = new object[parameters.Length];
|
||||
|
||||
for (int i = 0; i < parameters.Length; i++)
|
||||
|
Reference in New Issue
Block a user