Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- extends Node2D
- #only the first two show up and the other two dont
- func _ready():
- if randi() % 3 == 0:
- $TextureRect.texture = load("res://Hot AirballoonNew.png")
- elif randi() % 2 == 0:
- $TextureRect.texture = load("res://hotairballoon new2.png")
- elif randi() % 1 == 0:
- $TextureRect.texture = load("res://hotairballoon new3.png")
- else:
- $TextureRect.texture = load("res://hotairballoon new4.png")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement