Fix ParallaxLayer's transform resetting in editor

Disable resetting of ParallaxLayer's position and scale in editor to
allow setting the initial values.
This commit is contained in:
SeleckyErik 2021-09-01 14:57:14 +02:00
parent a2f808fc92
commit 7741afb55a

View file

@ -100,6 +100,10 @@ void ParallaxLayer::_notification(int p_what) {
_update_mirroring();
} break;
case NOTIFICATION_EXIT_TREE: {
if (Engine::get_singleton()->is_editor_hint()) {
break;
}
set_position(orig_offset);
set_scale(orig_scale);
} break;