EditorGUILayout.PropertyField(p.nearClippingPlane,_.GetContent("Near|The closest point relative to the camera that drawing will occur."));
EditorGUILayout.PropertyField(p.farClippingPlane,_.GetContent("Far|The furthest point relative to the camera that drawing will occur.\n"));
GUILayout.EndVertical();
GUILayout.EndHorizontal();
EditorGUIUtility.labelWidth=labelWidth;
_.DrawMultipleFields(
"Clipping Planes",
new[]{p.nearClippingPlane,p.farClippingPlane},
new[]{_.GetContent("Near|The closest point relative to the camera that drawing will occur."),_.GetContent("Far|The furthest point relative to the camera that drawing will occur.\n")});
EditorGUILayout.PropertyField(d.captureLocalPosition,_.GetContent("Capture Local Position"));
_.DrawMultipleFields(
"Clipping Planes",
new[]{d.captureNearPlane,d.captureFarPlane},
new[]{_.GetContent("Near|The closest point relative to the camera that drawing will occur."),_.GetContent("Far|The furthest point relative to the camera that drawing will occur.\n")});