Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/game/StarAnimation.cpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2024-03-25 15:01:23 +1100
committerKae <80987908+Novaenia@users.noreply.github.com>2024-03-25 15:01:23 +1100
commit78d5561db31a1cb51882a8c3a0fdd409ed386a51 (patch)
treed45383ce6c94d9ca84ea5308ed4152df39e2c75a /source/game/StarAnimation.cpp
parent84a2d8f7f8807977ad1174221a7231ce5e776aba (diff)
Fix animated particle discrepancies vs vanilla
Diffstat (limited to 'source/game/StarAnimation.cpp')
-rw-r--r--source/game/StarAnimation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarAnimation.cpp b/source/game/StarAnimation.cpp
index 9cbf88a..09da400 100644
--- a/source/game/StarAnimation.cpp
+++ b/source/game/StarAnimation.cpp
@@ -70,7 +70,7 @@ Drawable Animation::drawable(float pixelSize) const {
baseFrame += ":" + toString(m_frame);
Drawable drawable = Drawable::makeImage(std::move(baseFrame), pixelSize, m_centered, m_offset);
- drawable.imagePart().addDirectivesGroup(m_processing);
+ drawable.imagePart().addDirectivesGroup(m_processing, true);
drawable.rotate(m_angle);
drawable.color = m_color;
return drawable;