#background delay

7 messages · Page 1 of 1 (latest)

polar pawn
#

Is there a way I can make the background load continuously without a delay?

trim socket
#

hey

#

try somethng like this as a script attached to a parallax layer

#

func _process(delta):
    if sprite.region_rect.position >= Vector2(64, 64):
        sprite.region_rect.position = Vector2.ZERO````
#

just change 64x64 by the actual sprite size @polar pawn

polar pawn
#

Wow, thank you so much!!!😊

trim socket