You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
m_CameraSpeedSliderContent=EditorGUIUtility.TrTextContent("Speed","The current speed of the camera in the Scene view.");
58
-
m_CameraSpeedMinMax=newGUIContent[]
59
-
{
60
-
EditorGUIUtility.TrTextContent("Min","The minimum speed of the camera in the Scene view. Valid values are between [0.01, 98]."),
61
-
EditorGUIUtility.TrTextContent("Max","The maximum speed of the camera in the Scene view. Valid values are between [0.02, 99].")
62
-
};
63
-
m_FieldOfView=EditorGUIUtility.TrTextContent("Field of View","The height of the Camera's view angle. Measured in degrees vertically, or along the local Y axis.");
63
+
m_CameraSpeedSliderContent=EditorGUIUtility.TrTextContent("Camera Speed","The current speed of the camera in the Scene view.");
64
+
m_CameraSpeedMin=EditorGUIUtility.TrTextContent("Min","The minimum speed of the camera in the Scene view. Valid values are between [0.01, 98].");
65
+
m_CameraSpeedMax=EditorGUIUtility.TrTextContent("Max","The maximum speed of the camera in the Scene view. Valid values are between [0.02, 99].");
66
+
m_FieldOfView=EditorGUIUtility.TrTextContent("Field of View","The height of the camera's view angle. Measured in degrees vertically, or along the local Y axis.");
64
67
m_DynamicClip=EditorGUIUtility.TrTextContent("Dynamic Clipping","Check this to enable camera's near and far clipping planes to be calculated relative to the viewport size of the Scene.");
65
-
m_OcclusionCulling=EditorGUIUtility.TrTextContent("Occlusion Culling","Check this to enable occlusion culling in the Scene view. Occlusion culling disables rendering of objects when they\'re not currently seen by the Camera because they\'re hidden (occluded) by other objects.");
68
+
m_OcclusionCulling=EditorGUIUtility.TrTextContent("Occlusion Culling","Check this to enable occlusion culling in the Scene view. Occlusion culling disables rendering of objects when they\'re not currently seen by the camera because they\'re hidden (occluded) by other objects.");
69
+
m_EasingEnabled=EditorGUIUtility.TrTextContent("Camera Easing","Check this to enable camera movement easing. This makes the camera ease in when it starts moving, and ease out when it stops.");
70
+
m_EasingDuration=EditorGUIUtility.TrTextContent("Duration","How long it takes for the speed of the camera to accelerate to its initial full speed. Measured in seconds.");
66
71
}
67
72
68
73
publicoverridevoidOnGUI(Rectrect)
@@ -82,7 +87,7 @@ public override void OnGUI(Rect rect)
0 commit comments