more progress, GameObject inspector almost done

This commit is contained in:
sinaioutlander
2020-11-03 20:59:13 +11:00
parent b9b5d721c8
commit a46bc11e42
65 changed files with 1043 additions and 385 deletions

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
namespace ExplorerBeta.Helpers
namespace UnityExplorer.Helpers
{
[SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "External methods")]
public static class ICallHelper

View File

@ -13,7 +13,7 @@ using UnhollowerRuntimeLib;
using System.Runtime.InteropServices;
#endif
namespace ExplorerBeta.Helpers
namespace UnityExplorer.Helpers
{
[SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "External methods")]
public class ReflectionHelpers

View File

@ -3,10 +3,10 @@ using UnityEngine;
using System.IO;
using System.Reflection;
#if CPP
using ExplorerBeta.Unstrip.ImageConversion;
using UnityExplorer.Unstrip.ImageConversion;
#endif
namespace ExplorerBeta.Helpers
namespace UnityExplorer.Helpers
{
public static class Texture2DHelpers
{

View File

@ -1,6 +1,6 @@
using UnityEngine;
namespace ExplorerBeta.Helpers
namespace UnityExplorer.Helpers
{
public class UnityHelpers
{