@@ -85,7 +85,7 @@ public override void OnInspectorGUI()
85
85
if ( _mpfEngine . RequestedCoils . Length + _mpfEngine . RequestedSwitches . Length + _mpfEngine . RequestedLamps . Length > 0 ) {
86
86
if ( _foldoutSwitches = EditorGUILayout . BeginFoldoutHeaderGroup ( _foldoutSwitches , "Switches" ) ) {
87
87
foreach ( var sw in _mpfEngine . RequestedSwitches ) {
88
- EditorGUILayout . LabelField ( new GUIContent ( $ " [ { sw . InternalId } ] { sw . Id } ", Icons . Switch ( sw . NormallyClosed , IconSize . Small ) ) ) ;
88
+ EditorGUILayout . LabelField ( new GUIContent ( $ " { sw . Id } ", Icons . Switch ( sw . NormallyClosed , IconSize . Small ) ) ) ;
89
89
}
90
90
if ( _mpfEngine . RequestedSwitches . Length == 0 ) {
91
91
EditorGUILayout . LabelField ( "No switches in this machine." , naStyle ) ;
@@ -95,7 +95,7 @@ public override void OnInspectorGUI()
95
95
96
96
if ( _foldoutCoils = EditorGUILayout . BeginFoldoutHeaderGroup ( _foldoutCoils , "Coils" ) ) {
97
97
foreach ( var sw in _mpfEngine . RequestedCoils ) {
98
- EditorGUILayout . LabelField ( new GUIContent ( $ " [ { sw . InternalId } ] { sw . Id } ", Icons . Coil ( IconSize . Small ) ) ) ;
98
+ EditorGUILayout . LabelField ( new GUIContent ( $ " { sw . Id } ", Icons . Coil ( IconSize . Small ) ) ) ;
99
99
}
100
100
if ( _mpfEngine . RequestedCoils . Length == 0 ) {
101
101
EditorGUILayout . LabelField ( "No coils in this machine." , naStyle ) ;
@@ -105,7 +105,7 @@ public override void OnInspectorGUI()
105
105
106
106
if ( _foldoutLamps = EditorGUILayout . BeginFoldoutHeaderGroup ( _foldoutLamps , "Lamps" ) ) {
107
107
foreach ( var sw in _mpfEngine . RequestedLamps ) {
108
- EditorGUILayout . LabelField ( new GUIContent ( $ " [ { sw . InternalId } ] { sw . Id } ", Icons . Light ( IconSize . Small ) ) ) ;
108
+ EditorGUILayout . LabelField ( new GUIContent ( $ " { sw . Id } ", Icons . Light ( IconSize . Small ) ) ) ;
109
109
}
110
110
if ( _mpfEngine . RequestedLamps . Length == 0 ) {
111
111
EditorGUILayout . LabelField ( "No lamps in this machine." , naStyle ) ;
0 commit comments