mirror of
https://github.com/TheRavenwoodArts/LunaLightXMG.git
synced 2026-07-31 00:05:02 -07:00
Added Rowans kitchen sink background.
This commit is contained in:
@@ -28,6 +28,7 @@ namespace LunaLightXMG
|
||||
|
||||
// Test sprites - eventually handle in a sprite manager?
|
||||
private Texture2D platformTexture;
|
||||
private Texture2D sinkArea;
|
||||
|
||||
// Test platforms
|
||||
private Platform[] platforms;
|
||||
@@ -87,6 +88,7 @@ namespace LunaLightXMG
|
||||
|
||||
// Test platform
|
||||
platformTexture = Content.Load<Texture2D>("platform");
|
||||
sinkArea = Content.Load<Texture2D>("Sink area");
|
||||
// Music
|
||||
sinkBeats = Content.Load<SoundEffect>("music/sinkBeats");
|
||||
// load player sprite
|
||||
@@ -133,7 +135,8 @@ namespace LunaLightXMG
|
||||
// Test Sprite
|
||||
spriteBatch.Begin(samplerState: SamplerState.PointClamp);
|
||||
// Debug Grid
|
||||
spriteBatch.Draw(debugGrid, new Vector2(0, 0), Color.Blue);
|
||||
//spriteBatch.Draw(debugGrid, new Vector2(0, 0), Color.Blue);
|
||||
spriteBatch.Draw(sinkArea, new Vector2(0, 0), Color.White);
|
||||
|
||||
// Test draw tiles
|
||||
foreach (var platform in platforms)
|
||||
|
||||
Reference in New Issue
Block a user