mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-24 01:12:41 +08:00
almost done, just interactive unity structs and a few minor things to finish off.
This commit is contained in:
@ -34,7 +34,7 @@ namespace UnityExplorer.CSConsole
|
||||
|
||||
public static char indentOpen = '{';
|
||||
public static char indentClose = '}';
|
||||
private static readonly StringBuilder indentBuilder = new StringBuilder();
|
||||
private static StringBuilder indentBuilder = new StringBuilder();
|
||||
|
||||
public static char[] delimiters = new[]
|
||||
{
|
||||
@ -153,7 +153,7 @@ namespace UnityExplorer.CSConsole
|
||||
|
||||
public static string GetIndentForInput(string input, int indent, out int caretPosition)
|
||||
{
|
||||
indentBuilder.Clear();
|
||||
indentBuilder = new StringBuilder();
|
||||
|
||||
indent += 1;
|
||||
|
||||
|
Reference in New Issue
Block a user