Skip to content

Commit 61ac6b8

Browse files
committed
Change default speed values
1 parent e1ac7ca commit 61ac6b8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Runtime/Orbit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public sealed class Orbit : MonoBehaviour
1717
/// The speed at which the object orbits.
1818
/// </summary>
1919
[Tooltip("The speed at which the object orbits.")]
20-
public float speed = 1.0f;
20+
public float speed = 45.0f;
2121

2222
/// <summary>
2323
/// The distance from the center of the object being orbited.

Runtime/Rotate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public sealed class Rotate : MonoBehaviour
1717
/// The speed at which the object rotates.
1818
/// </summary>
1919
[Tooltip("The speed at which the object rotates.")]
20-
public float speed = 1.0f;
20+
public float speed = 45.0f;
2121

2222
/// <summary>
2323
/// The coordinate space in which the object rotates.

Runtime/RotateAround.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public sealed class RotateAround : MonoBehaviour
2323
/// The speed at which the object rotates.
2424
/// </summary>
2525
[Tooltip("The speed at which the object rotates.")]
26-
public float speed = 1.0f;
26+
public float speed = 45.0f;
2727

2828
/// <summary>
2929
/// The update mode during which the object rotates.

Runtime/Scale.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public sealed class Scale : MonoBehaviour
1111
/// The speed at which the object's scale changes.
1212
/// </summary>
1313
[Tooltip("The speed at which the object's scale changes.")]
14-
public Vector3 speed = Vector3.one;
14+
public Vector3 speed = Vector3.zero;
1515

1616
/// <summary>
1717
/// The update mode during which the object's scale changes.

0 commit comments

Comments
 (0)