We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f00fe45 commit 609c653Copy full SHA for 609c653
Editor/PlayableGraphVisualizer.cs
@@ -127,7 +127,12 @@ public override string ToString()
127
sb.AppendLine(InfoString("Handle", GetContentTypeShortName()));
128
129
var po = (PlayableOutput) content;
130
- sb.AppendLine(InfoString("IsValid", po.IsOutputValid()));
+ if (po.IsOutputValid())
131
+ {
132
+ sb.AppendLine(InfoString("IsValid", po.IsOutputValid()));
133
+ sb.AppendLine(InfoString("Weight", po.GetWeight()));
134
+ sb.AppendLine(InfoString("SourceOutputPort", po.GetSourceOutputPort()));
135
+ }
136
137
return sb.ToString();
138
}
0 commit comments