mirror of
https://github.com/godotengine/godot.git
synced 2024-12-05 10:33:21 +00:00
Merge pull request #31360 from nekomatata/fix-error-parallax-mirroring
Fixed error in ParallaxLayer when set_mirroring is called before entering the tree
This commit is contained in:
commit
5f44ee30ec
@ -69,6 +69,9 @@ Size2 ParallaxLayer::get_motion_offset() const {
|
||||
|
||||
void ParallaxLayer::_update_mirroring() {
|
||||
|
||||
if (!is_inside_tree())
|
||||
return;
|
||||
|
||||
ParallaxBackground *pb = Object::cast_to<ParallaxBackground>(get_parent());
|
||||
if (pb) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user