mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-11-12 10:25:30 +01:00
19 lines
498 B
GDScript
19 lines
498 B
GDScript
extends Node
|
|
|
|
func _ready() -> void:
|
|
for _i in range(Autoload.RANGE):
|
|
add_child(AnimationPlayer.new())
|
|
add_child(AnimationTree.new())
|
|
add_child(AnimationTreePlayer.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())
|
|
|