remove debug prints

This commit is contained in:
betalars 2023-05-28 12:55:17 +02:00
parent ba33997007
commit 82bd0b4fa6
1 changed files with 0 additions and 2 deletions

View File

@ -13,8 +13,6 @@ var own_postits: Array[PostIt] = []
@export var voice_line: AudioStream = null @export var voice_line: AudioStream = null
func _ready(): func _ready():
print(own_postits)
print(get_children())
if not Engine.is_editor_hint() and is_inside_tree(): if not Engine.is_editor_hint() and is_inside_tree():
for postit in self.get_children(): for postit in self.get_children():
if postit is PostIt: self.own_postits.append(postit as PostIt) if postit is PostIt: self.own_postits.append(postit as PostIt)