summaryrefslogtreecommitdiff
path: root/Scenes/PlateBounce.tscn
blob: c33c50b9e863e42f12ccc1b85dba3284f608102c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[gd_scene load_steps=7 format=2]

[ext_resource path="res://Scenes/PlateBounce.gd" type="Script" id=1]
[ext_resource path="res://Assets/arrow.png" type="Texture" id=2]
[ext_resource path="res://Assets/Environment/Obstacle.png" type="Texture" id=3]

[sub_resource type="PlaneMesh" id=1]
size = Vector2( 1, 1 )

[sub_resource type="SpatialMaterial" id=2]
flags_transparent = true
albedo_texture = ExtResource( 2 )

[sub_resource type="SpatialMaterial" id=3]
albedo_color = Color( 0.584314, 0.54902, 0.678431, 1 )
albedo_texture = ExtResource( 3 )

[node name="PlateBounce" type="Spatial"]
script = ExtResource( 1 )
valid_symbols = [ "2", "3", "4", "5", "6", "" ]

[node name="Mesh" type="MeshInstance" parent="."]
transform = Transform( 0.825458, 0, 0, 0, 1, 0, 0, 0, 0.825458, 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 )