regression-test-project/Other.gd
2020-08-16 08:12:17 +02:00

19 lines
472 B
GDScript

extends Node
const RANGE : int = 5
func _ready() -> void:
for _i in range(RANGE):
add_child(AnimationPlayer.new())
add_child(AnimationTree.new())
add_child(AudioStreamPlayer.new())
add_child(CanvasLayer.new())
add_child(ParallaxBackground.new())
add_child(HTTPRequest.new())
add_child(ResourcePreloader.new())
add_child(Skeleton2D.new())
add_child(Timer.new())
add_child(Tween.new())
add_child(Viewport.new())
add_child(WorldEnvironment.new())