TobiasWehrum / unity-utilities

A collection of Unity3D scripts I've been sharing between projects - open source, fully commented and with examples.
MIT License
274 stars 27 forks source link

Typo in the RollingArray example #3

Closed oxysoft closed 8 years ago

oxysoft commented 8 years ago

https://github.com/TobiasWehrum/unity-utilities/tree/master/RollingArray

You have

// Save the last 50 elements
mousePositions = new RollingArray<Vector2>(510);

Should it pass 50, not 510?

TobiasWehrum commented 8 years ago

Yes. Already fixed and waiting for the push.