Added Terrain3D and Jolt physics

This commit is contained in:
2024-02-19 14:40:29 +01:00
parent 0c15f00942
commit 54f2b9c686
9 changed files with 83 additions and 32 deletions

View File

@ -1,4 +1,4 @@
[gd_scene load_steps=37 format=3 uid="uid://b40y7iuskv1ar"]
[gd_scene load_steps=34 format=3 uid="uid://b40y7iuskv1ar"]
[ext_resource type="Script" path="res://Main.gd" id="1_cw3ws"]
[ext_resource type="Script" path="res://network/Client.gd" id="2_8hxcx"]
@ -17,11 +17,8 @@
[ext_resource type="Environment" uid="uid://dixa0yso2s1u3" path="res://world/Environment.tres" id="14_kuej8"]
[ext_resource type="Script" path="res://world/generator/Generator.gd" id="15_25nmg"]
[ext_resource type="PackedScene" uid="uid://cb2t7bvvf3gwh" path="res://enemy/slime/Slime.tscn" id="15_hgl78"]
[ext_resource type="MeshLibrary" uid="uid://c401giuqolkut" path="res://assets/grid/MeshLibrary.tres" id="15_qkcdq"]
[ext_resource type="Script" path="res://world/grid/WorldGrid.gd" id="16_36yv3"]
[ext_resource type="Script" path="res://world/PlayerManager.gd" id="16_dp6bj"]
[ext_resource type="PackedScene" uid="uid://dagn5bf7ou3sd" path="res://ui/UI.tscn" id="17_43qhq"]
[ext_resource type="PackedScene" uid="uid://hvc8oecqweko" path="res://world/grass/Grass.tscn" id="17_iovfi"]
[ext_resource type="FastNoiseLite" uid="uid://d3f4lk8q04haa" path="res://world/trees/TreeNoise.tres" id="19_ctwmw"]
[ext_resource type="Script" path="res://world/generator/TreeGenerator.gd" id="19_kcwnm"]
[ext_resource type="PackedScene" uid="uid://tr0tn0pkr1ea" path="res://world/trees/Callistemon.tscn" id="19_x2ulu"]
@ -31,13 +28,9 @@
[ext_resource type="Material" uid="uid://cxlib6jo32hxg" path="res://world/trees/LeafMaterial2.tres" id="22_k67l0"]
[ext_resource type="Material" uid="uid://c8o7cihkhrqf6" path="res://world/trees/LeafMaterial3.tres" id="23_lxn2x"]
[ext_resource type="AudioStream" uid="uid://b36mntcqlt553" path="res://assets/audio/ambience/Wind-Vegetation-Leaves-Gusts.wav" id="30_b3a1m"]
[sub_resource type="FastNoiseLite" id="FastNoiseLite_3ubsr"]
[sub_resource type="FastNoiseLite" id="FastNoiseLite_1khdm"]
[sub_resource type="FastNoiseLite" id="FastNoiseLite_b46lq"]
frequency = 0.005
[ext_resource type="Terrain3DStorage" uid="uid://c38e3dyrl8lao" path="res://assets/terrain/Storage.res" id="30_bvq0o"]
[ext_resource type="Terrain3DMaterial" uid="uid://nhcs8ekjedbb" path="res://world/terrain/Material.tres" id="31_of12o"]
[ext_resource type="Terrain3DTextureList" uid="uid://cpq0eq7wr08kf" path="res://world/terrain/TextureList.tres" id="32_d5ywf"]
[sub_resource type="FastNoiseLite" id="FastNoiseLite_xy4ll"]
seed = 300
@ -109,25 +102,13 @@ autostart = true
[node name="World" type="Node3D" parent="."]
[node name="Environment" type="WorldEnvironment" parent="World"]
environment = ExtResource("14_kuej8")
[node name="Sun" type="DirectionalLight3D" parent="World/Environment"]
transform = Transform3D(-0.350207, 0.827032, -0.439741, 0, 0.469472, 0.882948, 0.936672, 0.309215, -0.164412, 0, 3, 0)
light_energy = 1.8
shadow_enabled = true
script = ExtResource("11_4jb08")
[node name="Grid" type="GridMap" parent="World"]
mesh_library = ExtResource("15_qkcdq")
cell_center_y = false
script = ExtResource("16_36yv3")
moisture_noise = SubResource("FastNoiseLite_3ubsr")
temperature_noise = SubResource("FastNoiseLite_1khdm")
altitude_noise = SubResource("FastNoiseLite_b46lq")
grass = ExtResource("17_iovfi")
[node name="Terrain3D" type="Terrain3D" parent="World"]
storage = ExtResource("30_bvq0o")
material = ExtResource("31_of12o")
texture_list = ExtResource("32_d5ywf")
[node name="Houses" type="Node3D" parent="World"]
visible = false
script = ExtResource("15_25nmg")
scene = ExtResource("20_xjraj")
noise = SubResource("FastNoiseLite_xy4ll")
@ -138,6 +119,7 @@ density = 0.3
scale_max = 2.0
[node name="Trees" type="Node3D" parent="World"]
visible = false
script = ExtResource("19_kcwnm")
tree_materials = Array[Material]([ExtResource("20_seiv4")])
leaf_materials = Array[Material]([ExtResource("21_v66do"), ExtResource("22_k67l0"), ExtResource("23_lxn2x")])
@ -163,6 +145,15 @@ tilt = 0.15
[node name="Follow" parent="World" instance=ExtResource("12_aljdh")]
[node name="Environment" type="WorldEnvironment" parent="World"]
environment = ExtResource("14_kuej8")
[node name="Sun" type="DirectionalLight3D" parent="World/Environment"]
transform = Transform3D(-0.350207, 0.827032, -0.439741, 0, 0.469472, 0.882948, 0.936672, 0.309215, -0.164412, 0, 3, 0)
light_energy = 1.8
shadow_enabled = true
script = ExtResource("11_4jb08")
[node name="Ambience" type="AudioStreamPlayer" parent="World"]
stream = ExtResource("30_b3a1m")
autoplay = true