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()
108
108
109
109
EditorGUILayout . Space ( ) ;
110
110
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" ) ;
112
116
113
117
EditorGUILayout . Space ( ) ;
114
118
EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "onTrialBegin" ) ) . tooltip , MessageType . Info ) ;
115
119
DrawPropertiesFromUpTo ( "onTrialBegin" , "onTrialEnd" ) ;
116
120
117
121
EditorGUILayout . Space ( ) ;
118
122
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" ) ;
120
128
121
129
EditorGUILayout . Space ( ) ;
122
130
EditorGUILayout . HelpBox ( GetTooltip ( session . GetType ( ) . GetField ( "preSessionEnd" ) ) . tooltip , MessageType . Info ) ;
You can’t perform that action at this time.
0 commit comments