move from arial to roboto condensed
This commit is contained in:
parent
cadbb2ae01
commit
957fcf9c59
11 changed files with 13 additions and 13 deletions
|
@ -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
|
||||
|
|
BIN
Sledgemapper/Content/fonts/Roboto Condensed.ttf
Normal file
BIN
Sledgemapper/Content/fonts/Roboto Condensed.ttf
Normal file
Binary file not shown.
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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]));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue