Made lucas the Main character and also added collision

This commit is contained in:
2020-06-25 00:45:34 -06:00
parent 86cc05f0d7
commit 944f0ff712
12 changed files with 167 additions and 136 deletions

View File

@@ -8,18 +8,19 @@ namespace Collector
{
public interface IRestrictions
{
public const int Seed = 1;
public const int Seed = 3;
public const int TileSize = 1;
public const float ViewportHeight = 9f;
public const float ViewportWidth = 16f;
public const int MovementSpeed = 1;
public const float MovementSpeed = 4/32f;
public const int KeyDelay = 20;
public const int ChunkSize = 8;
public const int SuperChunkSize = 1;
public const int ChunkShift = 3;
public const int RenderDistance = 5;
public const float RenderTime = 1/60f;
public const float Zoom = 30;
public const float Zoom = 69;
public const float Scale = ViewportWidth/ViewportHeight;
public const float AnimationDuration = 0.3f;
}
}