Skip to content

Commit

Permalink
new wall png. Needs resizing. (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
SatchelF authored Apr 19, 2024
1 parent 768be16 commit 140ae4b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 15 deletions.
38 changes: 24 additions & 14 deletions src/Client/Content/Content.mgcb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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



Binary file added src/Client/Content/Textures/dune_wall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Shared/Entities/Wall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 140ae4b

Please sign in to comment.