Added shadow_blur property to fonts

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@846 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2008-05-16 19:26:11 +00:00
parent ec174fc2a7
commit 36c7e3ef43
4 changed files with 5 additions and 1 deletions
+2
View File
@@ -18,6 +18,7 @@ Font::Font()
, scale_down_to(100000)
, max_stretch(1.0)
, shadow_displacement(0,0)
, shadow_blur(0)
, separator_color(128,128,128)
, flags(FONT_NORMAL)
{}
@@ -117,5 +118,6 @@ IMPLEMENT_REFLECTION_NO_SCRIPT(Font) {
REFLECT_N("shadow_displacement_x", shadow_displacement.width);
REFLECT_N("shadow_displacement_y", shadow_displacement.height);
REFLECT(shadow_color);
REFLECT(shadow_blur);
REFLECT(separator_color);
}