File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Assets/UXF/Scripts/Etc/Editor Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -108,15 +108,23 @@ protected override void DrawInspector()
108108
109109 EditorGUILayout . Space ( ) ;
110110 EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "onSessionBegin" ) ) . tooltip , MessageType . Info ) ;
111- DrawPropertiesFromUpTo ( "onSessionBegin" , "onTrialBegin" ) ;
111+ DrawPropertiesFromUpTo ( "onSessionBegin" , "onBlockBegin" ) ;
112+
113+ EditorGUILayout . Space ( ) ;
114+ EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "onBlockBegin" ) ) . tooltip , MessageType . Info ) ;
115+ DrawPropertiesFromUpTo ( "onBlockBegin" , "onTrialBegin" ) ;
112116
113117 EditorGUILayout . Space ( ) ;
114118 EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "onTrialBegin" ) ) . tooltip , MessageType . Info ) ;
115119 DrawPropertiesFromUpTo ( "onTrialBegin" , "onTrialEnd" ) ;
116120
117121 EditorGUILayout . Space ( ) ;
118122 EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "onTrialEnd" ) ) . tooltip , MessageType . Info ) ;
119- DrawPropertiesFromUpTo ( "onTrialEnd" , "preSessionEnd" ) ;
123+ DrawPropertiesFromUpTo ( "onTrialEnd" , "onBlockEnd" ) ;
124+
125+ EditorGUILayout . Space ( ) ;
126+ EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "onBlockEnd" ) ) . tooltip , MessageType . Info ) ;
127+ DrawPropertiesFromUpTo ( "onBlockEnd" , "preSessionEnd" ) ;
120128
121129 EditorGUILayout . Space ( ) ;
122130 EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "preSessionEnd" ) ) . tooltip , MessageType . Info ) ;
You can’t perform that action at this time.
0 commit comments