Fix AnimatedSprite normal map loading

Normal map names are now correctly set up during loading.
This commit is contained in:
lawnjelly 2023-08-08 09:42:55 +01:00
parent b776cf5498
commit d02b319ec4

View file

@ -274,6 +274,7 @@ void SpriteFrames::_set_animations(const Array &p_animations) {
} }
animations[d["name"]] = anim; animations[d["name"]] = anim;
animations[d["name"]].normal_name = String(d["name"]) + NORMAL_SUFFIX;
} }
} }