Merge pull request #52308 from rxlecky/parallax-layer-position-reset-fix-issue-51914
Fix ParallaxLayer's transform resetting in editor
This commit is contained in:
commit
eb1262f6ea
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue