File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -224,9 +224,15 @@ void IHasCustomMenu.AddItemsToMenu(GenericMenu menu)
224224 menu . AddItem ( new GUIContent ( "Show clip progress bar title (will degrade performance)" ) ,
225225 _viewUpdateContext . ShowClipProgressBarTitle , OnToggleShowClipProgressBarTitle ) ;
226226#endif
227-
228227 menu . AddItem ( new GUIContent ( "Keep updating edges when mouse leave GraphView (will degrade performance)" ) ,
229228 _viewUpdateContext . KeepUpdatingEdges , OnToggleKeepUpdatingEdges ) ;
229+ menu . AddSeparator ( "" ) ;
230+
231+ // Source Code
232+ menu . AddItem ( new GUIContent ( "Source Code" ) , false , ( ) =>
233+ {
234+ Application . OpenURL ( "https://github.com/SolarianZ/UnityPlayableGraphMonitorTool" ) ;
235+ } ) ;
230236 }
231237
232238 private void OnToggleShowClipProgressBarTitle ( )
Original file line number Diff line number Diff line change 11{
22 "name" : " com.greenbamboogames.playablegraphmonitor" ,
3- "version" : " 2.5.6 " ,
3+ "version" : " 2.5.7 " ,
44 "displayName" : " PlayableGraph Monitor!" ,
55 "description" : " PlayableGraph monitor." ,
66 "unity" : " 2019.4" ,
1818 },
1919 "type" : " tool" ,
2020 "hideInEditor" : false
21- }
21+ }
You can’t perform that action at this time.
0 commit comments