is there any way to use Vector3Field without label? null and empty still cause an empty line above x,y,z fields.
position = EditorGUILayout.Vector3Field (null, position);
is there any way to use Vector3Field without label? null and empty still cause an empty line above x,y,z fields.
position = EditorGUILayout.Vector3Field (null, position);
Passing GUIContent.none
works.