File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,12 @@ protected override void OnMultiGUI(SerializedProperty serializedProperty)
130
130
EditorGUILayout . PropertyField ( serializedProperty . FindPropertyRelative ( nameof ( RadialIcon ) ) , new GUIContent ( T . アイコン ) ) ;
131
131
EditorGUILayout . PropertyField ( serializedProperty . FindPropertyRelative ( nameof ( RadialDefaultValue ) ) , new GUIContent ( T . パラメーター初期値 ) ) ;
132
132
ShowDetailMenuMulti ( serializedProperty ) ;
133
- EditorGUILayout . PropertyField ( serializedProperty . FindPropertyRelative ( nameof ( PreventRemoteFloatBug ) ) , new GUIContent ( T . リモートでのFloat暴発バグを防ぐ ) ) ;
133
+ var lockRemoteDuringChange = serializedProperty . FindPropertyRelative ( nameof ( LockRemoteDuringChange ) ) ;
134
+ EditorGUILayout . PropertyField ( lockRemoteDuringChange , new GUIContent ( T . 変更中リモートをロック ) ) ;
135
+ if ( lockRemoteDuringChange . hasMultipleDifferentValues || ! lockRemoteDuringChange . boolValue )
136
+ {
137
+ EditorGUILayout . PropertyField ( serializedProperty . FindPropertyRelative ( nameof ( PreventRemoteFloatBug ) ) , new GUIContent ( T . リモートでのFloat暴発バグを防ぐ ) ) ;
138
+ }
134
139
serializedObject . ApplyModifiedProperties ( ) ;
135
140
}
136
141
You can’t perform that action at this time.
0 commit comments