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:
parent
cd6a051e27
commit
bd3a764a80
2 changed files with 17 additions and 0 deletions
11
random/randomizer.gd
Normal file
11
random/randomizer.gd
Normal 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
6
random/randomizer.tscn
Normal 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")
|
Loading…
Reference in a new issue