diff options
| author | Ben Beltran <ben@nsovocal.com> | 2018-06-26 17:03:58 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2018-06-26 17:03:58 -0500 |
| commit | 9ad526c0233134a928cb5889dccb94458fc6dfd0 (patch) | |
| tree | fa2282abbde8735b801125bb18294c7ec1847a92 /SuperPolarity/Actors/StandardShip.cs | |
| parent | ae4f458103f5bfa44c833a147e7852e23cc02217 (diff) | |
Update source to compile on VS Studio for mac
Diffstat (limited to 'SuperPolarity/Actors/StandardShip.cs')
| -rw-r--r-- | SuperPolarity/Actors/StandardShip.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SuperPolarity/Actors/StandardShip.cs b/SuperPolarity/Actors/StandardShip.cs index ef2fe7f..ff04ea0 100644 --- a/SuperPolarity/Actors/StandardShip.cs +++ b/SuperPolarity/Actors/StandardShip.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -31,9 +31,9 @@ namespace SuperPolarity new RNGCryptoServiceProvider().GetBytes(cryptoResult); ChangeRate = 50; - AngleChangeProbability = 50; + AngleChangeProbability = 50; BouncePadding = 0; - MaxVelocity = 2; + MaxVelocity = 3; CurrentTime = 0; RotationFactor = (float) (3 * Math.PI / 180); Random = new Random(BitConverter.ToInt32(cryptoResult, 0)); |