Skip to content

Commit

Permalink
Added tag to 'objs' output
Browse files Browse the repository at this point in the history
  • Loading branch information
pipe01 committed Jul 17, 2018
1 parent 5099750 commit 97d2567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/InternalCommands.cs
Expand Up @@ -301,7 +301,7 @@ void Recurse(GameObject parent, int level = 0)
{
string compStr = string.Join(", ", parent.GetComponents<Component>().Select(o => o.GetType().Name).ToArray());

MDebug.WriteLine(new string(' ', level * 4) + parent.name + $" ({compStr})");
MDebug.WriteLine(new string(' ', level * 4) + $"{parent.name} [{parent.tag}] ({compStr})");

foreach (Transform item in parent.transform)
{
Expand Down

0 comments on commit 97d2567

Please sign in to comment.