Fix typo in Prop2DDataSprite::set_normal_map.

This commit is contained in:
Relintai 2022-03-16 10:22:51 +01:00
parent d057ffdd40
commit 01b2d8eedf

View File

@ -37,7 +37,7 @@ Ref<Texture> Prop2DDataSprite::get_normal_map() const {
return _normal_map;
}
void Prop2DDataSprite::set_normal_map(const Ref<Texture> &value) {
_normal_map = _normal_map;
_normal_map = value;
}
bool Prop2DDataSprite::get_centered() const {