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();
|
_update_mirroring();
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_EXIT_TREE: {
|
case NOTIFICATION_EXIT_TREE: {
|
||||||
|
if (Engine::get_singleton()->is_editor_hint()) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
set_position(orig_offset);
|
set_position(orig_offset);
|
||||||
set_scale(orig_scale);
|
set_scale(orig_scale);
|
||||||
} break;
|
} break;
|
||||||
|
|
Loading…
Reference in New Issue