pretty happy with fog and cloud tweaks, still need to make bigger clouds

This commit is contained in:
derek
2025-04-01 11:43:48 -05:00
parent 8999a68854
commit ca5cfba827
8 changed files with 120 additions and 95 deletions

View File

@@ -7,7 +7,6 @@ func _ready() -> void:
spawn_clouds()
func spawn_clouds():
print("SPAWNING CLOUDS")
while number_of_clouds >= 0:
number_of_clouds -= 1
@@ -19,4 +18,3 @@ func spawn_clouds():
var cloud = cloud.instantiate()
add_child(cloud)
cloud.global_position = self.global_position + spawn_pos
print("CLOUD POS : ",spawn_pos)