File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- using System . Text ;
21using GBG . PlayableGraphMonitor . Editor . Node ;
32using GBG . PlayableGraphMonitor . Editor . Utility ;
3+ using System . Text ;
44using UnityEditor . Experimental . GraphView ;
55using UnityEngine . UIElements ;
66
@@ -114,6 +114,7 @@ private string GetPlayableGraphDescription()
114114 const string LINE = "----------" ;
115115
116116 _graphDescBuilder . AppendLine ( playableGraph . GetEditorName ( ) )
117+ . AppendLine ( LINE )
117118 . Append ( "HashCode: " ) . AppendLine ( playableGraph . GetHashCode ( ) . ToString ( ) )
118119 . AppendLine ( LINE )
119120 . Append ( "IsValid: " ) . AppendLine ( playableGraph . IsValid ( ) . ToString ( ) )
@@ -125,7 +126,7 @@ private string GetPlayableGraphDescription()
125126 . Append ( "PlayableCount: " ) . AppendLine ( playableGraph . GetPlayableCount ( ) . ToString ( ) )
126127 . Append ( "RootPlayableCount: " ) . AppendLine ( playableGraph . GetRootPlayableCount ( ) . ToString ( ) )
127128 . AppendLine ( LINE )
128- . Append ( "Resolver: " ) . AppendLine ( playableGraph . GetResolver ( ) . ToString ( ) ) ;
129+ . Append ( "Resolver: " ) . AppendLine ( playableGraph . GetResolver ( ) ? . ToString ( ) ?? "Null" ) ;
129130 }
130131
131132 return _graphDescBuilder . ToString ( ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " com.greenbamboogames.playablegraphmonitor" ,
3- "version" : " 2.4 .0" ,
3+ "version" : " 2.5 .0" ,
44 "displayName" : " PlayableGraph Monitor!" ,
55 "description" : " PlayableGraph monitor." ,
66 "unity" : " 2019.4" ,
You can’t perform that action at this time.
0 commit comments