7 lines
125 B
GDScript
7 lines
125 B
GDScript
extends Node2D
|
|
|
|
func _ready() -> void:
|
|
if Engine.is_editor_hint():
|
|
return
|
|
for b in get_children():
|
|
b.add_to_group(name) |