Skip to content

Commit

Permalink
Bumped package version
Browse files Browse the repository at this point in the history
  • Loading branch information
yasirkula committed Aug 20, 2021
1 parent 030e4e4 commit 693d122
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Plugins/RuntimeInspector/Scripts/RuntimeHierarchy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ private void OnEditorSelectionChanged()
if( !syncSelectionWithEditorHierarchy )
return;

if ( UnityEditor.Selection.activeTransform )
if( UnityEditor.Selection.activeTransform )
Select( UnityEditor.Selection.activeTransform );
}
#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public HierarchyData FindDataAtIndex( int index )

public HierarchyDataTransform FindTransform( Transform target, Transform nextInPath = null )
{
if ( m_depth < 0 ) // This object is hidden from Hierarchy
if( m_depth < 0 ) // This object is hidden from Hierarchy
return null;

bool isInitSearch = nextInPath == null;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.yasirkula.runtimeinspector",
"displayName": "Runtime Inspector & Hierarchy",
"version": "1.6.2",
"version": "1.6.3",
"documentationUrl": "https://github.com/yasirkula/UnityRuntimeInspector",
"changelogUrl": "https://github.com/yasirkula/UnityRuntimeInspector/releases",
"licensesUrl": "https://github.com/yasirkula/UnityRuntimeInspector/blob/master/LICENSE.txt",
Expand Down

0 comments on commit 693d122

Please sign in to comment.