summaryrefslogtreecommitdiff
path: root/Scenes/Ground.tscn
diff options
context:
space:
mode:
authorVictor Andrade de Almeida <vct.a.almeida@gmail.com>2022-07-17 02:58:01 -0300
committerVictor Andrade de Almeida <vct.a.almeida@gmail.com>2022-07-17 02:58:13 -0300
commit8d61124b3dbeacbf71f0b5a2a53dc7f53e88a310 (patch)
treed36a196ea0ad980bcb58308a66dd907f227d04c8 /Scenes/Ground.tscn
parent9796ffe09423c849430929a509f6615a9f8f5106 (diff)
downloadgamejam-gmtk-2022-8d61124b3dbeacbf71f0b5a2a53dc7f53e88a310.tar.gz
gamejam-gmtk-2022-8d61124b3dbeacbf71f0b5a2a53dc7f53e88a310.tar.bz2
gamejam-gmtk-2022-8d61124b3dbeacbf71f0b5a2a53dc7f53e88a310.zip
Fix ground
Diffstat (limited to 'Scenes/Ground.tscn')
-rw-r--r--Scenes/Ground.tscn19
1 files changed, 19 insertions, 0 deletions
diff --git a/Scenes/Ground.tscn b/Scenes/Ground.tscn
new file mode 100644
index 0000000..60c9e11
--- /dev/null
+++ b/Scenes/Ground.tscn
@@ -0,0 +1,19 @@
+[gd_scene load_steps=4 format=2]
+
+[ext_resource path="res://Assets/Environment/Floor_tile.png" type="Texture" id=1]
+
+[sub_resource type="PlaneMesh" id=1]
+size = Vector2( 1, 1 )
+
+[sub_resource type="SpatialMaterial" id=4]
+albedo_color = Color( 0.694118, 0.505882, 0.666667, 1 )
+albedo_texture = ExtResource( 1 )
+uv1_scale = Vector3( 3.5, 3.5, 1 )
+uv1_offset = Vector3( 0, 0, 1 )
+
+[node name="Spatial" type="Spatial"]
+
+[node name="Ground" type="MeshInstance" parent="."]
+transform = Transform( 7, 0, 0, 0, 1, 0, 0, 0, 7, 3.5, 0, -3.5 )
+mesh = SubResource( 1 )
+material/0 = SubResource( 4 )