diff options
author | Victor Andrade de Almeida <vct.a.almeida@gmail.com> | 2022-07-17 03:43:25 -0300 |
---|---|---|
committer | Victor Andrade de Almeida <vct.a.almeida@gmail.com> | 2022-07-17 03:43:25 -0300 |
commit | 6843ddb6d5f2fb0702b0031c6a830d11b812d31d (patch) | |
tree | 00f9b35b20da6771b819f1dc34488068c965899f /Scenes/PlateBounce.tscn | |
parent | 330284158278f15d7a41789e1fbca8f8b099dd4a (diff) | |
download | gamejam-gmtk-2022-6843ddb6d5f2fb0702b0031c6a830d11b812d31d.tar.gz gamejam-gmtk-2022-6843ddb6d5f2fb0702b0031c6a830d11b812d31d.tar.bz2 gamejam-gmtk-2022-6843ddb6d5f2fb0702b0031c6a830d11b812d31d.zip |
Improve bounce pressure plate
Diffstat (limited to 'Scenes/PlateBounce.tscn')
-rw-r--r-- | Scenes/PlateBounce.tscn | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Scenes/PlateBounce.tscn b/Scenes/PlateBounce.tscn index da7395b..b323006 100644 --- a/Scenes/PlateBounce.tscn +++ b/Scenes/PlateBounce.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=5 format=2] +[gd_scene load_steps=6 format=2] [ext_resource path="res://Scenes/PlateBounce.gd" type="Script" id=1] [ext_resource path="res://Assets/arrow.png" type="Texture" id=2] @@ -10,12 +10,20 @@ size = Vector2( 1, 1 ) flags_transparent = true albedo_texture = ExtResource( 2 ) +[sub_resource type="SpatialMaterial" id=3] +albedo_color = Color( 0.341176, 0.27451, 0.529412, 1 ) + [node name="PlateBounce" type="Spatial"] script = ExtResource( 1 ) valid_symbols = [ "2", "3", "4", "5", "6", "" ] cardinal = null [node name="Mesh" type="MeshInstance" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.05, 0 ) +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.02, 0 ) mesh = SubResource( 1 ) material/0 = SubResource( 2 ) + +[node name="Mesh2" type="MeshInstance" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.01, 0 ) +mesh = SubResource( 1 ) +material/0 = SubResource( 3 ) |