You've already forked godot
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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user