Made a Gui and created a dropdown menu to select block
This commit is contained in:
6
.idea/.idea.Collector/.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
6
.idea/.idea.Collector/.idea/inspectionProfiles/Project_Default.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<profile version="1.0">
|
||||||
|
<option name="myName" value="Project Default" />
|
||||||
|
<inspection_tool class="MarkdownUnresolvedFileReference" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
</profile>
|
||||||
|
</component>
|
||||||
@@ -18,6 +18,8 @@
|
|||||||
<PackageReference Include="MonoGame.Extended" Version="3.7.0" />
|
<PackageReference Include="MonoGame.Extended" Version="3.7.0" />
|
||||||
<PackageReference Include="MonoGame.Extended.Collisions" Version="3.7.0" />
|
<PackageReference Include="MonoGame.Extended.Collisions" Version="3.7.0" />
|
||||||
<PackageReference Include="MonoGame.Framework.DesktopGL.Core" Version="3.8.0.13" />
|
<PackageReference Include="MonoGame.Framework.DesktopGL.Core" Version="3.8.0.13" />
|
||||||
|
<PackageReference Include="Myra" Version="1.0.0.204" />
|
||||||
|
<PackageReference Include="Myra.Editor" Version="0.7.6.147" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
12
Collector/Content/themes/editor/ThemeData.xml
Normal file
12
Collector/Content/themes/editor/ThemeData.xml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.ThemeSettings">
|
||||||
|
<ThemeName>Clean</ThemeName>
|
||||||
|
<AuthorName>Ronen Ness</AuthorName>
|
||||||
|
<Description>A simple, editor-like UI theme.</Description>
|
||||||
|
<Credits>Made by Ronen Ness</Credits>
|
||||||
|
<Version>1.0.0</Version>
|
||||||
|
<RepoUrl></RepoUrl>
|
||||||
|
<License>MIT</License>
|
||||||
|
</Asset>
|
||||||
|
</XnaContent>
|
||||||
38
Collector/Content/themes/editor/effects/disabled.fx
Normal file
38
Collector/Content/themes/editor/effects/disabled.fx
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
#if OPENGL
|
||||||
|
#define SV_POSITION POSITION
|
||||||
|
#define VS_SHADERMODEL vs_3_0
|
||||||
|
#define PS_SHADERMODEL ps_3_0
|
||||||
|
#else
|
||||||
|
#define VS_SHADERMODEL vs_4_0_level_9_1
|
||||||
|
#define PS_SHADERMODEL ps_4_0_level_9_1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
Texture2D SpriteTexture;
|
||||||
|
|
||||||
|
sampler2D SpriteTextureSampler = sampler_state
|
||||||
|
{
|
||||||
|
Texture = <SpriteTexture>;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct VertexShaderOutput
|
||||||
|
{
|
||||||
|
float4 Position : SV_POSITION;
|
||||||
|
float4 Color : COLOR0;
|
||||||
|
float2 TextureCoordinates : TEXCOORD0;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 MainPS(VertexShaderOutput input) : COLOR
|
||||||
|
{
|
||||||
|
float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
|
||||||
|
float value = (color.r + color.g + color.b) / 3;
|
||||||
|
color.r = color.g = color.b = value;
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
|
||||||
|
technique SpriteDrawing
|
||||||
|
{
|
||||||
|
pass P0
|
||||||
|
{
|
||||||
|
PixelShader = compile PS_SHADERMODEL MainPS();
|
||||||
|
}
|
||||||
|
};
|
||||||
39
Collector/Content/themes/editor/effects/silhouette.fx
Normal file
39
Collector/Content/themes/editor/effects/silhouette.fx
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
#if OPENGL
|
||||||
|
#define SV_POSITION POSITION
|
||||||
|
#define VS_SHADERMODEL vs_3_0
|
||||||
|
#define PS_SHADERMODEL ps_3_0
|
||||||
|
#else
|
||||||
|
#define VS_SHADERMODEL vs_4_0_level_9_1
|
||||||
|
#define PS_SHADERMODEL ps_4_0_level_9_1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
Texture2D SpriteTexture;
|
||||||
|
|
||||||
|
sampler2D SpriteTextureSampler = sampler_state
|
||||||
|
{
|
||||||
|
Texture = <SpriteTexture>;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct VertexShaderOutput
|
||||||
|
{
|
||||||
|
float4 Position : SV_POSITION;
|
||||||
|
float4 Color : COLOR0;
|
||||||
|
float2 TextureCoordinates : TEXCOORD0;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 MainPS(VertexShaderOutput input) : COLOR
|
||||||
|
{
|
||||||
|
float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
|
||||||
|
color.r = 1 * color.a * input.Color.r;
|
||||||
|
color.g = 1 * color.a * input.Color.g;
|
||||||
|
color.b = 1 * color.a * input.Color.b;
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
|
||||||
|
technique SpriteDrawing
|
||||||
|
{
|
||||||
|
pass P0
|
||||||
|
{
|
||||||
|
PixelShader = compile PS_SHADERMODEL MainPS();
|
||||||
|
}
|
||||||
|
};
|
||||||
60
Collector/Content/themes/editor/fonts/Bold.spritefont
Normal file
60
Collector/Content/themes/editor/fonts/Bold.spritefont
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file contains an xml description of a font, and will be read by the XNA
|
||||||
|
Framework Content Pipeline. Follow the comments to customize the appearance
|
||||||
|
of the font in your game, and to change the characters which are available to draw
|
||||||
|
with.
|
||||||
|
-->
|
||||||
|
<XnaContent xmlns:Graphics="Microsoft.Xna.Framework.Content.Pipeline.Graphics">
|
||||||
|
<Asset Type="Graphics:FontDescription">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Modify this string to change the font that will be imported.
|
||||||
|
-->
|
||||||
|
<FontName>Bitstream Vera Sans Mono Bold</FontName>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Size is a float value, measured in points. Modify this value to change
|
||||||
|
the size of the font.
|
||||||
|
-->
|
||||||
|
<Size>16</Size>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Spacing is a float value, measured in pixels. Modify this value to change
|
||||||
|
the amount of spacing in between characters.
|
||||||
|
-->
|
||||||
|
<Spacing>0</Spacing>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
UseKerning controls the layout of the font. If this value is true, kerning information
|
||||||
|
will be used when placing characters.
|
||||||
|
-->
|
||||||
|
<UseKerning>true</UseKerning>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Style controls the style of the font. Valid entries are "Regular", "Bold", "Italic",
|
||||||
|
and "Bold, Italic", and are case sensitive.
|
||||||
|
-->
|
||||||
|
<Style>Regular</Style>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
If you uncomment this line, the default character will be substituted if you draw
|
||||||
|
or measure text that contains characters which were not included in the font.
|
||||||
|
-->
|
||||||
|
<!-- <DefaultCharacter>*</DefaultCharacter> -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
CharacterRegions control what letters are available in the font. Every
|
||||||
|
character from Start to End will be built and made available for drawing. The
|
||||||
|
default range is from 32, (ASCII space), to 126, ('~'), covering the basic Latin
|
||||||
|
character set. The characters are ordered according to the Unicode standard.
|
||||||
|
See the documentation for more information.
|
||||||
|
-->
|
||||||
|
<CharacterRegions>
|
||||||
|
<CharacterRegion>
|
||||||
|
<Start> </Start>
|
||||||
|
<End>~</End>
|
||||||
|
</CharacterRegion>
|
||||||
|
</CharacterRegions>
|
||||||
|
</Asset>
|
||||||
|
</XnaContent>
|
||||||
60
Collector/Content/themes/editor/fonts/Italic.spritefont
Normal file
60
Collector/Content/themes/editor/fonts/Italic.spritefont
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file contains an xml description of a font, and will be read by the XNA
|
||||||
|
Framework Content Pipeline. Follow the comments to customize the appearance
|
||||||
|
of the font in your game, and to change the characters which are available to draw
|
||||||
|
with.
|
||||||
|
-->
|
||||||
|
<XnaContent xmlns:Graphics="Microsoft.Xna.Framework.Content.Pipeline.Graphics">
|
||||||
|
<Asset Type="Graphics:FontDescription">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Modify this string to change the font that will be imported.
|
||||||
|
-->
|
||||||
|
<FontName>Bitstream Vera Sans Mono Oblique</FontName>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Size is a float value, measured in points. Modify this value to change
|
||||||
|
the size of the font.
|
||||||
|
-->
|
||||||
|
<Size>16</Size>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Spacing is a float value, measured in pixels. Modify this value to change
|
||||||
|
the amount of spacing in between characters.
|
||||||
|
-->
|
||||||
|
<Spacing>0</Spacing>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
UseKerning controls the layout of the font. If this value is true, kerning information
|
||||||
|
will be used when placing characters.
|
||||||
|
-->
|
||||||
|
<UseKerning>true</UseKerning>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Style controls the style of the font. Valid entries are "Regular", "Bold", "Italic",
|
||||||
|
and "Bold, Italic", and are case sensitive.
|
||||||
|
-->
|
||||||
|
<Style>Italic</Style>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
If you uncomment this line, the default character will be substituted if you draw
|
||||||
|
or measure text that contains characters which were not included in the font.
|
||||||
|
-->
|
||||||
|
<!-- <DefaultCharacter>*</DefaultCharacter> -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
CharacterRegions control what letters are available in the font. Every
|
||||||
|
character from Start to End will be built and made available for drawing. The
|
||||||
|
default range is from 32, (ASCII space), to 126, ('~'), covering the basic Latin
|
||||||
|
character set. The characters are ordered according to the Unicode standard.
|
||||||
|
See the documentation for more information.
|
||||||
|
-->
|
||||||
|
<CharacterRegions>
|
||||||
|
<CharacterRegion>
|
||||||
|
<Start> </Start>
|
||||||
|
<End>~</End>
|
||||||
|
</CharacterRegion>
|
||||||
|
</CharacterRegions>
|
||||||
|
</Asset>
|
||||||
|
</XnaContent>
|
||||||
60
Collector/Content/themes/editor/fonts/Regular.spritefont
Normal file
60
Collector/Content/themes/editor/fonts/Regular.spritefont
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file contains an xml description of a font, and will be read by the XNA
|
||||||
|
Framework Content Pipeline. Follow the comments to customize the appearance
|
||||||
|
of the font in your game, and to change the characters which are available to draw
|
||||||
|
with.
|
||||||
|
-->
|
||||||
|
<XnaContent xmlns:Graphics="Microsoft.Xna.Framework.Content.Pipeline.Graphics">
|
||||||
|
<Asset Type="Graphics:FontDescription">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Modify this string to change the font that will be imported.
|
||||||
|
-->
|
||||||
|
<FontName>Bitstream Vera Sans Mono Roman</FontName>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Size is a float value, measured in points. Modify this value to change
|
||||||
|
the size of the font.
|
||||||
|
-->
|
||||||
|
<Size>16</Size>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Spacing is a float value, measured in pixels. Modify this value to change
|
||||||
|
the amount of spacing in between characters.
|
||||||
|
-->
|
||||||
|
<Spacing>0</Spacing>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
UseKerning controls the layout of the font. If this value is true, kerning information
|
||||||
|
will be used when placing characters.
|
||||||
|
-->
|
||||||
|
<UseKerning>true</UseKerning>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Style controls the style of the font. Valid entries are "Regular", "Bold", "Italic",
|
||||||
|
and "Bold, Italic", and are case sensitive.
|
||||||
|
-->
|
||||||
|
<Style>Regular</Style>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
If you uncomment this line, the default character will be substituted if you draw
|
||||||
|
or measure text that contains characters which were not included in the font.
|
||||||
|
-->
|
||||||
|
<!-- <DefaultCharacter>*</DefaultCharacter> -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
CharacterRegions control what letters are available in the font. Every
|
||||||
|
character from Start to End will be built and made available for drawing. The
|
||||||
|
default range is from 32, (ASCII space), to 126, ('~'), covering the basic Latin
|
||||||
|
character set. The characters are ordered according to the Unicode standard.
|
||||||
|
See the documentation for more information.
|
||||||
|
-->
|
||||||
|
<CharacterRegions>
|
||||||
|
<CharacterRegion>
|
||||||
|
<Start> </Start>
|
||||||
|
<End>~</End>
|
||||||
|
</CharacterRegion>
|
||||||
|
</CharacterRegions>
|
||||||
|
</Asset>
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Button-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Button-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>2</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 60</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Button-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Button-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Button-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Button-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FFAAAAAA</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/CheckBox-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/CheckBox-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 40</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FF00FFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FF00FFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FFFFFFFF</FillColor>
|
||||||
|
<OutlineColor>FF000000</OutlineColor>
|
||||||
|
<OutlineWidth>2</OutlineWidth>
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/DropDown-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/DropDown-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 220</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
19
Collector/Content/themes/editor/styles/Entity-Default.xml
Normal file
19
Collector/Content/themes/editor/styles/Entity-Default.xml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor>FFFFFFFF</FillColor>
|
||||||
|
<OutlineColor>00000000</OutlineColor>
|
||||||
|
<OutlineWidth>0</OutlineWidth>
|
||||||
|
<ForceAlignCenter>false</ForceAlignCenter>
|
||||||
|
<FontStyle>Regular</FontStyle>
|
||||||
|
<SelectedHighlightColor>00000000</SelectedHighlightColor>
|
||||||
|
<ShadowColor>00000000</ShadowColor>
|
||||||
|
<ShadowOffset>0 0</ShadowOffset>
|
||||||
|
<Padding>26 26</Padding>
|
||||||
|
<SpaceBefore>0 0</SpaceBefore>
|
||||||
|
<SpaceAfter>0 8</SpaceAfter>
|
||||||
|
<ShadowScale>1</ShadowScale>
|
||||||
|
<DefaultSize>0 0</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Entity-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Entity-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Entity-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Entity-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Header-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Header-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1.2</Scale>
|
||||||
|
<FillColor>FF00FFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter>true</ForceAlignCenter>
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Header-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Header-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Header-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Header-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Icon-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Icon-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>50 50</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Icon-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Icon-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Icon-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Icon-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1.1</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Image-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Image-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor>FFFFFFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Image-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Image-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Image-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Image-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Label-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Label-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>0.8</Scale>
|
||||||
|
<FillColor>FFCCCCCC</FillColor>
|
||||||
|
<OutlineColor>FF000000</OutlineColor>
|
||||||
|
<OutlineWidth>2</OutlineWidth>
|
||||||
|
<ForceAlignCenter>false</ForceAlignCenter>
|
||||||
|
<FontStyle>Regular</FontStyle>
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Label-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Label-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Label-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Label-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Panel-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Panel-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>2</Scale>
|
||||||
|
<FillColor>FFFFFFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Panel-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Panel-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Panel-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Panel-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>2</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FFAAAAAA</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Paragraph-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Paragraph-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor>FFFFFFFF</FillColor>
|
||||||
|
<OutlineColor>FF000000</OutlineColor>
|
||||||
|
<OutlineWidth>2</OutlineWidth>
|
||||||
|
<ForceAlignCenter>false</ForceAlignCenter>
|
||||||
|
<FontStyle>Regular</FontStyle>
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 52</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FF00FFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 50</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor>64000000</SelectedHighlightColor>
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding>30 22</Padding>
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 220</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor>FFFFFFFF</FillColor>
|
||||||
|
<OutlineColor>FF000000</OutlineColor>
|
||||||
|
<OutlineWidth>2</OutlineWidth>
|
||||||
|
<ForceAlignCenter>false</ForceAlignCenter>
|
||||||
|
<FontStyle>Regular</FontStyle>
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FF00FFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor>FF00FFFF</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Slider-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/Slider-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 30</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Slider-MouseDown.xml
Normal file
20
Collector/Content/themes/editor/styles/Slider-MouseDown.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/Slider-MouseHover.xml
Normal file
20
Collector/Content/themes/editor/styles/Slider-MouseHover.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
20
Collector/Content/themes/editor/styles/TextInput-Default.xml
Normal file
20
Collector/Content/themes/editor/styles/TextInput-Default.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>0 65</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<FillColor>FF969696</FillColor>
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize>30 0</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<Scale Null="true" />
|
||||||
|
<FillColor Null="true" />
|
||||||
|
<OutlineColor Null="true" />
|
||||||
|
<OutlineWidth Null="true" />
|
||||||
|
<ForceAlignCenter Null="true" />
|
||||||
|
<FontStyle Null="true" />
|
||||||
|
<SelectedHighlightColor Null="true" />
|
||||||
|
<ShadowColor Null="true" />
|
||||||
|
<ShadowOffset Null="true" />
|
||||||
|
<Padding Null="true" />
|
||||||
|
<SpaceBefore Null="true" />
|
||||||
|
<SpaceAfter Null="true" />
|
||||||
|
<ShadowScale Null="true" />
|
||||||
|
<DefaultSize Null="true" />
|
||||||
|
</Asset>
|
||||||
|
|
||||||
|
</XnaContent>
|
||||||
47
Collector/Content/themes/editor/styles/example.xml
Normal file
47
Collector/Content/themes/editor/styles/example.xml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
This file shows an example of how to make a stylesheet file.
|
||||||
|
To create a style for specific entity and state, create an XML with the format below with the following name:
|
||||||
|
<entity-type>-<state>.xml
|
||||||
|
|
||||||
|
For example, if you want to style paragraph default state:
|
||||||
|
Paragraph-Default.xml.
|
||||||
|
|
||||||
|
Note:
|
||||||
|
- All entity types can be seen in Entities folder in source code.
|
||||||
|
- The available states are: Default, MouseHover, MouseDown.
|
||||||
|
- If you set only partial settings for a state (for example if you don't set FillColor for MouseDown state), default will be used.
|
||||||
|
- The above means that all properties should be set for all entities default state.
|
||||||
|
-->
|
||||||
|
<XnaContent xmlns:ns="Microsoft.Xna.Framework">
|
||||||
|
<Asset Type="GeonBit.UI.DataTypes.DefaultStyles">
|
||||||
|
<!-- entity scale (or font size for paragraphs) -->
|
||||||
|
<Scale>1</Scale>
|
||||||
|
<!-- fill color or tint for images -->
|
||||||
|
<FillColor>FFFFFFFF</FillColor>
|
||||||
|
<!-- outline color, if defined -->
|
||||||
|
<OutlineColor>FF000000</OutlineColor>
|
||||||
|
<!-- outline width (0 for no outline) -->
|
||||||
|
<OutlineWidth>2</OutlineWidth>
|
||||||
|
<!-- for paragraphs - if true, will always align to center -->
|
||||||
|
<ForceAlignCenter>false</ForceAlignCenter>
|
||||||
|
<!-- Font style: Regular, Bold or Italic -->
|
||||||
|
<FontStyle>Regular</FontStyle>
|
||||||
|
<!-- For lists and dropbox - the selected item background color -->
|
||||||
|
<SelectedHighlightColor>00000000</SelectedHighlightColor>
|
||||||
|
<!-- Shadow color (00000000) for no shadow -->
|
||||||
|
<ShadowColor>00000000</ShadowColor>
|
||||||
|
<!-- Shadow offset -->
|
||||||
|
<ShadowOffset>0 0</ShadowOffset>
|
||||||
|
<!-- Internal padding for child elements -->
|
||||||
|
<Padding>10 10</Padding>
|
||||||
|
<!-- Space in pixels to leave before this entity, when using auto anchors -->
|
||||||
|
<SpaceBefore>0 0</SpaceBefore>
|
||||||
|
<!-- Space in pixels to leave after this entity, when using auto anchors -->
|
||||||
|
<SpaceAfter>0 0</SpaceAfter>
|
||||||
|
<!-- Scale the shadow of this entity (if have shadow) -->
|
||||||
|
<ShadowScale>1</ShadowScale>
|
||||||
|
<!-- Default entity size, when not setting size / setting -1. only used in default state -->
|
||||||
|
<DefaultSize>50 50</DefaultSize>
|
||||||
|
</Asset>
|
||||||
|
</XnaContent>
|
||||||
BIN
Collector/Content/themes/editor/textures/arrow_down.png
Normal file
BIN
Collector/Content/themes/editor/textures/arrow_down.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
BIN
Collector/Content/themes/editor/textures/arrow_up.png
Normal file
BIN
Collector/Content/themes/editor/textures/arrow_up.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
BIN
Collector/Content/themes/editor/textures/button_alternative.png
Normal file
BIN
Collector/Content/themes/editor/textures/button_alternative.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user