aboutsummaryrefslogtreecommitdiffstats
path: root/godot/scenes/scripts
diff options
context:
space:
mode:
authorLibravatar David <david003@gmx.net>2022-07-16 01:47:58 +0200
committerLibravatar David <david003@gmx.net>2022-07-16 01:47:58 +0200
commit4f2bc986240c61bd455742c0cee3c3c796fc5e6b (patch)
treec0acca8ce61b88f0b98f17bd6b566bbaf44ce39e /godot/scenes/scripts
parentc12b8b1a507a2da79e529d518c9f56ed64d4963f (diff)
parentcdc2b9ea0bd97b982411ba4b6e03643937c105ad (diff)
download2022-4f2bc986240c61bd455742c0cee3c3c796fc5e6b.tar.gz
2022-4f2bc986240c61bd455742c0cee3c3c796fc5e6b.tar.bz2
2022-4f2bc986240c61bd455742c0cee3c3c796fc5e6b.zip
Merge branch 'uuuhhh'
Diffstat (limited to '')
-rw-r--r--godot/scenes/scripts/roblox-cube.gd22
1 files changed, 22 insertions, 0 deletions
diff --git a/godot/scenes/scripts/roblox-cube.gd b/godot/scenes/scripts/roblox-cube.gd
new file mode 100644
index 0000000..453067b
--- /dev/null
+++ b/godot/scenes/scripts/roblox-cube.gd
@@ -0,0 +1,22 @@
+extends Spatial
+
+
+# Declare member variables here. Examples:
+# var a = 2
+# var b = "text"
+func on_collision(other):
+ var ap = get_parent().get_node("AudioStreamPlayer")
+ ap.play()
+
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+ var rb = self
+ rb.apply_impulse(Vector3(), Vector3(40, 1, 10))
+ rb.connect("body_entered", self, "on_collision")
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+#func _process(delta):
+# pass
+