diff options
Diffstat (limited to 'source/game/scripting/StarLuaGameConverters.cpp')
-rw-r--r-- | source/game/scripting/StarLuaGameConverters.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/game/scripting/StarLuaGameConverters.cpp b/source/game/scripting/StarLuaGameConverters.cpp index 070048e..baae984 100644 --- a/source/game/scripting/StarLuaGameConverters.cpp +++ b/source/game/scripting/StarLuaGameConverters.cpp @@ -449,7 +449,12 @@ Maybe<Drawable> LuaConverter<Drawable>::to(LuaEngine& engine, LuaValue const& v) else if (auto poly = table->get<Maybe<PolyF>>("poly")) drawable = Drawable::makePoly(poly.take(), color); else if (auto image = table->get<Maybe<String>>("image")) - drawable = Drawable::makeImage(image.take(), 1.0f, table->get<Maybe<bool>>("centered").value(true), Vec2F(), color); + drawable = Drawable::makeImage( + image.take(), + table->get<Maybe<bool>>("screenSpace").value(false) ? 1.0f : 1.0f / TilePixels, + table->get<Maybe<bool>>("centered").value(true), + Vec2F(), + color); else return {}; // throw LuaAnimationComponentException("Drawable table must have 'line', 'poly', or 'image'"); |