We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbfdc70 commit a734aa2Copy full SHA for a734aa2
Examples/RollingArrayExample.cs
@@ -12,7 +12,7 @@ public class RollingArrayExample : MonoBehaviour
12
void Awake()
13
{
14
// Save the last 50 elements
15
- mousePositions = new RollingArray<Vector2>(510);
+ mousePositions = new RollingArray<Vector2>(50);
16
17
// Cache a reference to the main camera
18
mainCamera = Camera.main;
RollingArray/README.md
@@ -19,7 +19,7 @@ public class RollingArrayExample : MonoBehaviour
19
20
21
22
23
24
25
0 commit comments