mirror of
https://github.com/TheRavenwoodArts/LunaLightXMG.git
synced 2026-07-30 22:55:03 -07:00
Added reset platforms.
This commit is contained in:
@@ -56,6 +56,7 @@ namespace LunaLightXMG
|
||||
// Left side wall (static)
|
||||
List<Platform> leftSidePlatforms = new List<Platform>
|
||||
{
|
||||
new Platform(new Vector2(0, -28), 16, 16),
|
||||
new Platform(new Vector2(0, -12), 16, 16),
|
||||
new Platform(new Vector2(0, 4), 16, 16),
|
||||
new Platform(new Vector2(0, 20), 16, 16),
|
||||
@@ -72,6 +73,7 @@ namespace LunaLightXMG
|
||||
// Right side wall (static)
|
||||
List<Platform> rightSidePlatforms = new List<Platform>
|
||||
{
|
||||
new Platform(new Vector2(304, -28), 16, 16),
|
||||
new Platform(new Vector2(304, -12), 16, 16),
|
||||
new Platform(new Vector2(304, 4), 16, 16),
|
||||
new Platform(new Vector2(304, 20), 16, 16),
|
||||
@@ -100,6 +102,8 @@ namespace LunaLightXMG
|
||||
{
|
||||
List<Platform> platforms = new List<Platform>();
|
||||
platforms.Add(new Platform(new Vector2(16, 132), 16, 16));
|
||||
platforms.Add(new Platform(new Vector2(144, 132), 16, 16));
|
||||
platforms.Add(new Platform(new Vector2(160, 132), 16, 16));
|
||||
platforms.Add(new Platform(new Vector2(288, 132), 16, 16));
|
||||
|
||||
for (int i = 0; i < numberOfPlatforms; i++)
|
||||
|
||||
Reference in New Issue
Block a user