1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Scenes/PlateKey.gd" type="Script" id=1]
[sub_resource type="CubeMesh" id=1]
size = Vector3( 0.9, 0.05, 1 )
[sub_resource type="SpatialMaterial" id=2]
albedo_color = Color( 0.34902, 0.541176, 0.835294, 1 )
[node name="PlateKey" type="Spatial"]
script = ExtResource( 1 )
valid_symbols = [ "1", "2", "3" ]
door_path = null
[node name="Mesh" type="MeshInstance" parent="."]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.025, 0 )
mesh = SubResource( 1 )
material/0 = SubResource( 2 )
|