Skip to content

Commit dd49bb4

Browse files
committed
Capitalize static yield properties
1 parent 9039b9b commit dd49bb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Utilities/Yield.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ public static class Yield
1717
/// Waits until the end of the frame, just before displaying the frame
1818
/// on screen.
1919
/// </summary>
20-
public static readonly WaitForEndOfFrame endOfFrame = new WaitForEndOfFrame();
20+
public static readonly WaitForEndOfFrame EndOfFrame = new WaitForEndOfFrame();
2121

2222
/// <summary>
2323
/// Waits until the next fixed frame rate update function.
2424
/// </summary>
25-
public static readonly WaitForFixedUpdate fixedUpdate = new WaitForFixedUpdate();
25+
public static readonly WaitForFixedUpdate FixedUpdate = new WaitForFixedUpdate();
2626

2727
/// <summary>
2828
/// Stores WaitForSeconds statements.

0 commit comments

Comments
 (0)