1
Fork 0
mirror of https://github.com/Steffo99/swear-jar.git synced 2024-11-21 15:24:18 +00:00

made randomizer (still empty)

This commit is contained in:
Matteo Balugani 2023-10-01 11:56:18 +02:00 committed by Stefano Pigozzi
parent cd6a051e27
commit bd3a764a80
Signed by: steffo
GPG key ID: 2A24051445686895
2 changed files with 17 additions and 0 deletions

11
random/randomizer.gd Normal file
View file

@ -0,0 +1,11 @@
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass

6
random/randomizer.tscn Normal file
View file

@ -0,0 +1,6 @@
[gd_scene load_steps=2 format=3 uid="uid://cldl3smm1c2pm"]
[ext_resource type="Script" path="res://random/randomizer.gd" id="1_nvy1v"]
[node name="Randomizer" type="Node2D"]
script = ExtResource("1_nvy1v")