Initial commit

This commit is contained in:
2024-01-14 12:22:14 +01:00
commit 9b47e374c7
24 changed files with 529 additions and 0 deletions

View File

@ -0,0 +1,3 @@
[gd_resource type="CameraAttributesPractical" format=3 uid="uid://b835orxyqq6w5"]
[resource]

8
world/Environment.tres Normal file
View File

@ -0,0 +1,8 @@
[gd_resource type="Environment" load_steps=2 format=3 uid="uid://dixa0yso2s1u3"]
[ext_resource type="Sky" uid="uid://b0q75qnaj0r5h" path="res://world/Sky.tres" id="1_utnj1"]
[resource]
sky = ExtResource("1_utnj1")
ambient_light_source = 3
reflected_light_source = 2

4
world/ProceduralSky.tres Normal file
View File

@ -0,0 +1,4 @@
[gd_resource type="ProceduralSkyMaterial" format=3 uid="uid://b7q6crweeh3jv"]
[resource]
ground_bottom_color = Color(0.0313726, 0.0470588, 0.160784, 1)

6
world/Sky.tres Normal file
View File

@ -0,0 +1,6 @@
[gd_resource type="Sky" load_steps=2 format=3 uid="uid://b0q75qnaj0r5h"]
[ext_resource type="Material" uid="uid://b7q6crweeh3jv" path="res://world/ProceduralSky.tres" id="1_7mt7h"]
[resource]
sky_material = ExtResource("1_7mt7h")

21
world/World.gd Normal file
View File

@ -0,0 +1,21 @@
extends Node
func _ready():
# Capture mouse
#Input.mouse_mode = Input.MOUSE_MODE_CAPTURED
# Mute audio
var master_sound = AudioServer.get_bus_index("Master")
AudioServer.set_bus_mute(master_sound, true)
func _input(event):
if event.is_action_pressed("toggle_fullscreen"):
var mode = DisplayServer.window_get_mode()
match mode:
DisplayServer.WINDOW_MODE_FULLSCREEN:
DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED)
_:
DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN)
return

22
world/World.tscn Normal file
View File

@ -0,0 +1,22 @@
[gd_scene load_steps=5 format=3 uid="uid://b40y7iuskv1ar"]
[ext_resource type="Script" path="res://world/World.gd" id="1_2lci4"]
[ext_resource type="Environment" uid="uid://dixa0yso2s1u3" path="res://world/Environment.tres" id="1_qb8w4"]
[ext_resource type="CameraAttributesPractical" uid="uid://b835orxyqq6w5" path="res://world/CameraAttributes.tres" id="2_1nt3m"]
[ext_resource type="PackedScene" uid="uid://bxotvk73tbgw0" path="res://ui/UI.tscn" id="4_c6x8y"]
[node name="World" type="Node"]
script = ExtResource("1_2lci4")
[node name="UI" parent="." instance=ExtResource("4_c6x8y")]
[node name="Camera" type="Camera3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 5)
fov = 90.0
[node name="Sun" type="DirectionalLight3D" parent="."]
transform = Transform3D(0.904299, 0.26004, -0.33856, 0, 0.793066, 0.609135, 0.4269, -0.55084, 0.717169, 0, 0, 0)
[node name="Environment" type="WorldEnvironment" parent="."]
environment = ExtResource("1_qb8w4")
camera_attributes = ExtResource("2_1nt3m")