move from arial to roboto condensed

This commit is contained in:
Michele Scandura 2020-11-25 11:42:22 +00:00
parent cadbb2ae01
commit 957fcf9c59
11 changed files with 13 additions and 13 deletions

View file

@ -2478,7 +2478,7 @@
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=True
/processorParam:MakeSquare=False
/processorParam:TextureFormat=DxtCompressed
/processorParam:TextureFormat=Color
/build:overlays/rubble.png
#begin overlays/saber-tooth.png
@ -2670,7 +2670,7 @@
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=True
/processorParam:MakeSquare=False
/processorParam:TextureFormat=DxtCompressed
/processorParam:TextureFormat=Color
/build:overlays/stairs1.png
#begin overlays/stairs2.png
@ -2682,7 +2682,7 @@
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=True
/processorParam:MakeSquare=False
/processorParam:TextureFormat=DxtCompressed
/processorParam:TextureFormat=Color
/build:overlays/stairs2.png
#begin overlays/stairs3.png
@ -2694,7 +2694,7 @@
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=True
/processorParam:MakeSquare=False
/processorParam:TextureFormat=DxtCompressed
/processorParam:TextureFormat=Color
/build:overlays/stairs3.png
#begin overlays/stone-block.png

Binary file not shown.

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -11,7 +11,7 @@ with.
<!--
Modify this string to change the font that will be imported.
-->
<FontName>Arial</FontName>
<FontName>Roboto Condensed.ttf</FontName>
<!--
Size is a float value, measured in points. Modify this value to change

View file

@ -16,7 +16,7 @@ namespace Sledgemapper
Dictionary<string, T> result = new();
FileInfo[] files = dir.GetFiles("*.*");
foreach (FileInfo file in files)
foreach (FileInfo file in files.Where(f=>f.Extension!=".ttf"))
{
result.Add(file.Name.Split('.')[0], contentManager.Load<T>(contentFolder + "/" + file.Name.Split('.')[0]));
}