1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Scenes/Crystal.gd" type="Script" id=1]
[sub_resource type="PrismMesh" id=3]
size = Vector3( 1, 1, 1 )
[sub_resource type="SpatialMaterial" id=2]
resource_local_to_scene = true
albedo_color = Color( 0.819608, 0.858824, 0.921569, 1 )
[node name="Crystal" type="Spatial"]
script = ExtResource( 1 )
actionable = true
active_color = Color( 0.564706, 0.294118, 1, 1 )
[node name="Mesh" type="MeshInstance" parent="."]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0 )
mesh = SubResource( 3 )
material/0 = SubResource( 2 )
|