1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

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;