Now About Social Code
summaryrefslogtreecommitdiff
path: root/scripts/spinner.gd
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2023-09-10 12:11:01 -0400
committerLucas Fryzek <lucas.fryzek@gmail.com>2023-09-10 12:11:30 -0400
commite2af60e3985317e9c4ec15e60f83bd8f5e49110e (patch)
treedf822824058f47755fba0c854f9c4a56d7d58d35 /scripts/spinner.gd
Initial commit
Diffstat (limited to 'scripts/spinner.gd')
-rw-r--r--scripts/spinner.gd19
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/spinner.gd b/scripts/spinner.gd
new file mode 100644
index 0000000..ffeebd7
--- /dev/null
+++ b/scripts/spinner.gd
@@ -0,0 +1,19 @@
+extends Node3D
+
+
+var positions = [
+ Vector3(-1, 0, -1),
+ Vector3( 1, 0, -1),
+ Vector3( 1, 0, 1),
+ Vector3(-1, 0, 1),
+]
+
+# 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):
+ $dude.transform()
+ pass