diff --git a/src/Client/Content/Content.mgcb b/src/Client/Content/Content.mgcb index fca8792..d3ff859 100644 --- a/src/Client/Content/Content.mgcb +++ b/src/Client/Content/Content.mgcb @@ -166,6 +166,18 @@ /processorParam:TextureFormat=Color /build:Textures/deadWormSpice.png +#begin Textures/dune_wall.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:Textures/dune_wall.png + #begin Textures/head.png /importer:TextureImporter /processor:TextureProcessor @@ -190,6 +202,18 @@ /processorParam:TextureFormat=Color /build:Textures/particle.png +#begin Textures/rotating_orbs.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:Textures/rotating_orbs.png + #begin Textures/SandTile.png /importer:TextureImporter /processor:TextureProcessor @@ -274,17 +298,3 @@ /processorParam:TextureFormat=Color /build:Textures/wall.png -#begin Textures/rotating_orbs.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/rotating_orbs.png - - - diff --git a/src/Client/Content/Textures/dune_wall.png b/src/Client/Content/Textures/dune_wall.png new file mode 100644 index 0000000..b5fd41d Binary files /dev/null and b/src/Client/Content/Textures/dune_wall.png differ diff --git a/src/Shared/Entities/Wall.cs b/src/Shared/Entities/Wall.cs index 85f238e..3bf726e 100644 --- a/src/Shared/Entities/Wall.cs +++ b/src/Shared/Entities/Wall.cs @@ -9,7 +9,7 @@ public class Wall public static Entity create(Vector2 position, int size) { Entity entity = new Entity(); - entity.add(new Appearance("Textures/wall")); + entity.add(new Appearance("Textures/dune_wall")); entity.add(new Position(position)); entity.add(new Size(new Vector2(size, size))); entity.add(new Collidable());