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/Entity.gd" type="Script" id=1]
[ext_resource path="res://Assets/Environment/Obstacle.png" type="Texture" id=2]
[sub_resource type="CubeMesh" id=6]
size = Vector3( 1, 1, 1 )
[sub_resource type="SpatialMaterial" id=5]
albedo_color = Color( 0.580392, 0.541176, 0.615686, 1 )
albedo_texture = ExtResource( 2 )
uv1_scale = Vector3( 3, 2, 1 )
[node name="Obstacle" type="Spatial"]
script = ExtResource( 1 )
[node name="Mesh" type="MeshInstance" parent="."]
transform = Transform( 0.999005, 0, 0, 0, 0.999005, 0, 0, 0, 0.999005, 0, 0.5, 0 )
mesh = SubResource( 6 )
skeleton = NodePath("../..")
material/0 = SubResource( 5 )
|