mirror of
https://github.com/Relintai/regression-test-project.git
synced 2025-01-25 15:29:19 +01:00
19 lines
472 B
GDScript
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())
|
|
|