feat(integration): wire Sprint 1 effects (water surface, godrays, caustics, bio particles, block burst) + rebuild v0.2

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Floppyrj45
2026-04-19 18:18:28 +02:00
parent d8e19932cc
commit e78daa2a22
6 changed files with 31 additions and 3 deletions

View File

@@ -1,10 +1,13 @@
[gd_scene load_steps=6 format=3 uid="uid://dauphincraft_main"]
[gd_scene load_steps=11 format=3 uid="uid://dauphincraft_main"]
[ext_resource type="Script" path="res://scripts/Main.gd" id="1_mainscript"]
[ext_resource type="Script" path="res://scripts/ambience/UnderwaterEnvironment.gd" id="2_uwenv"]
[ext_resource type="PackedScene" path="res://scenes/World.tscn" id="3_world"]
[ext_resource type="PackedScene" path="res://scenes/Dolphin.tscn" id="4_dolphin"]
[ext_resource type="Script" path="res://scripts/ambience/PlanktonParticles.gd" id="5_plankton"]
[ext_resource type="PackedScene" uid="uid://dauphincraft_watersurface" path="res://scenes/WaterSurface.tscn" id="6_watersurface"]
[ext_resource type="Script" uid="uid://d1v40uwv1k73a" path="res://scripts/ambience/CausticsLayer.gd" id="7_caustics"]
[ext_resource type="Script" uid="uid://p4wxq06qavu4" path="res://scripts/ambience/BioluminescentParticles.gd" id="8_biolum"]
[node name="Main" type="Node3D"]
script = ExtResource("1_mainscript")
@@ -23,7 +26,16 @@ shadow_enabled = true
[node name="Dolphin" parent="." instance=ExtResource("4_dolphin")]
position = Vector3(0, 55, 0)
[node name="WaterSurface" parent="." instance=ExtResource("6_watersurface")]
position = Vector3(0, 0, 0)
[node name="PlanktonFollower" type="Node3D" parent="."]
[node name="PlanktonParticles" type="GPUParticles3D" parent="PlanktonFollower"]
script = ExtResource("5_plankton")
[node name="CausticsLayer" type="Node3D" parent="PlanktonFollower"]
script = ExtResource("7_caustics")
[node name="BioluminescentParticles" type="GPUParticles3D" parent="PlanktonFollower"]
script = ExtResource("8_biolum")