1
0

Lesson Completed

This commit is contained in:
FoxSpellCaster
2025-01-11 19:53:54 -05:00
parent cc7230eda5
commit 7cd13ccdc8
15 changed files with 49 additions and 38 deletions

View File

@@ -1,6 +1,17 @@
extends Node2D
#NEXT This is where we are editing right now
@export var spawn_count : int = 200
var star_scene = preload("res://Loops/Scenes/Star.tscn")
# Called when the node enters the scene tree for the first time.
func _ready():
pass
for i in spawn_count:
var star = star_scene.instantiate()
add_child(star)
star.position.x = randi_range(-280, 280)
star.position.y = randi_range(-150, 150)
var star_size = randf_range(0.5, 1.0)
star.scale.x = star_size
star.scale.y = star_size