1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Scenes/Player.gd" type="Script" id=1]
[ext_resource path="res://Scenes/Mesh.gd" type="Script" id=2]
[sub_resource type="CubeMesh" id=2]
size = Vector3( 1, 1, 1 )
[sub_resource type="SpatialMaterial" id=4]
albedo_color = Color( 0.403922, 0.729412, 0.427451, 1 )
[node name="Player" type="Spatial"]
script = ExtResource( 1 )
actionable = true
[node name="Mesh" type="MeshInstance" parent="."]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.5, 0 )
mesh = SubResource( 2 )
skeleton = NodePath("../..")
material/0 = SubResource( 4 )
script = ExtResource( 2 )
|