Compare commits

...

3 commits

Author SHA1 Message Date
c390f6c745 add first new scene/level 2025-02-14 17:17:23 -07:00
ed335f6fdd reorganize stuff 2025-02-14 15:43:06 -07:00
5c53032c73 organize targets slightly better 2025-02-14 15:38:53 -07:00
28 changed files with 751 additions and 282 deletions

View file

@ -21,7 +21,7 @@ config/icon="res://icon.png"
XRToolsUserSettings="*res://addons/godot-xr-tools/user_settings/user_settings.gd"
XRToolsRumbleManager="*res://addons/godot-xr-tools/rumble/rumble_manager.gd"
DebugCam="*res://addons/debug_camera/scripts/DebugCamAutoload.gd"
PerformanceSettingsSingleton="*res://scenes/performance_settings.gd"
PerformanceSettingsSingleton="*res://scenes/performance_settings/performance_settings.gd"
[editor]

32
scenes/base_game_scene.gd Normal file
View file

@ -0,0 +1,32 @@
extends XRToolsSceneBase
func scene_loaded(user_data = null):
super.scene_loaded(user_data)
_reset_manipulators()
func _ready():
# for editor testing when scene is directly loaded
_reset_manipulators()
func _reset_manipulators():
# reset the manipulators (the loaded scene has them in the final position)
# Get all manipulators in the scene
var manipulators = get_tree().get_nodes_in_group("manipulators")
# Calculate spacing between manipulators
var total_width = manipulators.size() - 1
var start_x = -total_width / 2.0
# Position each manipulator in a line
for i in range(manipulators.size()):
var manipulator = manipulators[i]
var x_pos = start_x + i
manipulator.transform.origin = Vector3(x_pos, 1.0, -1.0)
manipulator.transform.basis = Basis.IDENTITY
# Reset the attractor sphere radius
var attractor = manipulator.get_node("VisualAttractorSphere")
if attractor:
attractor.radius = 0.5

View file

@ -0,0 +1,129 @@
# This script is designed to drive gameplay logic based on the number of GPUParticles3D
# that "hit" various static target areas in 3D space. Multiple particle systems can be cloned
# and rendered in a dedicated SubViewport on layer 20. Each uses a special testing shader that,
# for each particle, checks its 3D world-space position against up to eight static target
# bounding boxes.
#
# The testing shader maps particles that hit a target into a designated horizontal slice of clip
# space so that the SubViewport (sized 8×1 pixels) accumulates red intensity in each column. Higher
# red intensity means more particles hit that target.
#
# In this version, the targets are static so their parameters (center, extents, and the inverse of
# their 3×3 rotation basis) are computed once and sent to the shader. The attractors are shared
# (set up in the main scene and used by the cloned particle systems) rather than cloned.
#
# The script looks for nodes in the "targets" group that are instances of the Target class,
# and directly calls their set_occupancy() method with the measured red intensity.
extends Node3D
# Optional debug mesh to visualize the viewport texture
@export var debug_mesh_path: NodePath
var debug_mesh: MeshInstance3D
# Exported node paths for particle systems to clone
@export var source_particles_paths: Array[NodePath] = [] # Array of GPUParticles3D nodes to clone
# Path to the testing shader resource.
const shader = preload("res://scenes/collisions/particle_test.gdshader")
# Maximum number of target areas supported.
const MAX_TARGETS: int = 8
# References.
var clone_particles: Array[GPUParticles3D] = []
@onready var sub_viewport: SubViewport = $SubViewport
var targets: Array[Target] = []
func _ready():
# Find all Target nodes in the "targets" group
for node in get_tree().get_nodes_in_group("targets"):
print("Found node in targets group: ", node.name, " of type ", node.get_class())
if node is Target:
print("Adding target: ", node.name)
targets.append(node)
else:
print("Skipping non-Target node: ", node.name)
print("Found ", targets.size(), " valid targets")
# Ensure we don't exceed MAX_TARGETS
if targets.size() > MAX_TARGETS:
push_warning("More than %d targets found, extras will be ignored" % MAX_TARGETS)
targets.resize(MAX_TARGETS)
# Set up debug mesh if path provided
if not debug_mesh_path.is_empty():
debug_mesh = get_node(debug_mesh_path)
if debug_mesh:
var debug_material = debug_mesh.get_surface_override_material(0)
debug_material.albedo_texture = sub_viewport.get_texture()
debug_mesh.set_surface_override_material(0, debug_material)
# Create shared shader material
var shader_material = ShaderMaterial.new()
shader_material.shader = shader
# Precompute static target parameters and set them in the shader once
var centers: Array = [] # Array of Vector3 centers
var extents: Array = [] # Array of Vector3 half-sizes
var inv_bases: Array = [] # Array of mat3 (precomputed inverse bases)
for i in range(MAX_TARGETS):
if i < targets.size():
var collision_shape = targets[i].get_node_or_null("CollisionShape3D") as CollisionShape3D
if collision_shape and collision_shape.shape is BoxShape3D:
var box: BoxShape3D = collision_shape.shape
var gxf: Transform3D = collision_shape.global_transform
print("Target %d:" % i)
print(" Box extents: ", box.extents)
print(" Global transform origin: ", gxf.origin)
print(" Global transform basis: ", gxf.basis)
centers.append(gxf.origin)
extents.append(box.extents)
inv_bases.append(gxf.basis.inverse()) # Precompute the inverse once
else:
centers.append(Vector3.ZERO)
extents.append(Vector3.ZERO) # Zero extents means this target is disabled
inv_bases.append(Basis.IDENTITY)
else:
centers.append(Vector3.ZERO)
extents.append(Vector3.ZERO)
inv_bases.append(Basis.IDENTITY)
shader_material.set_shader_parameter("target_center", centers)
shader_material.set_shader_parameter("target_extents", extents)
shader_material.set_shader_parameter("target_inv_basis", inv_bases)
# Create clones of each particle system
for path in source_particles_paths:
var source_particles = get_node(path) as GPUParticles3D
print("Getting source particles from path: ", path)
if source_particles:
print("Found source particles: ", source_particles.name)
else:
push_warning("Could not find GPUParticles3D at path: %s" % path)
if source_particles:
# Clone the source particles
var clone = source_particles.duplicate()
# disable trails since they add extra meshes
clone.trail_enabled = false
# replace the draw pass with a simple quad mesh
clone.draw_pass_1 = QuadMesh.new()
# and set the shared material
clone.draw_pass_1.surface_set_material(0, shader_material)
# set visual layer to 20 so it doesn't draw on main camera
clone.layers = 0
clone.set_layer_mask_value(20, true)
# add clone as child of SubViewport
sub_viewport.add_child(clone)
clone_particles.append(clone)
func _process(_delta):
# Each frame, read back the 8 pixel wide image from the SubViewport
var viewport_tex = sub_viewport.get_texture()
if viewport_tex:
var img: Image = viewport_tex.get_image()
if img:
for x in range(targets.size()):
var col: Color = img.get_pixel(x, 0)
var occupancy: float = col.r # The red channel intensity
targets[x].set_occupancy(occupancy)

View file

@ -1,6 +1,6 @@
[gd_scene load_steps=3 format=3 uid="uid://rsrnbs08nv1n"]
[ext_resource type="Script" path="res://scenes/proxy_collision_detector.gd" id="1_ijo8k"]
[ext_resource type="Script" path="res://scenes/collisions/proxy_collision_detector.gd" id="1_ijo8k"]
[sub_resource type="Environment" id="Environment_gp8a6"]
background_mode = 1

View file

@ -1,6 +1,6 @@
[gd_scene load_steps=7 format=3 uid="uid://bifpsyvpcem3a"]
[ext_resource type="Script" path="res://scenes/manipulator.gd" id="1_g7g3k"]
[ext_resource type="Script" path="res://scenes/manipulator/manipulator.gd" id="1_g7g3k"]
[ext_resource type="PackedScene" uid="uid://c25yxb0vt53vc" path="res://addons/godot-xr-tools/objects/grab_points/grab_point_hand_left.tscn" id="2_nqt0c"]
[ext_resource type="PackedScene" uid="uid://ctw7nbntd5pcj" path="res://addons/godot-xr-tools/objects/grab_points/grab_point_hand_right.tscn" id="3_luhd1"]

View file

@ -1,7 +1,7 @@
[gd_scene load_steps=5 format=3 uid="uid://ccmx5v2601k8q"]
[ext_resource type="Script" path="res://scenes/visual_attractor_sphere.gd" id="1_62tkw"]
[ext_resource type="Shader" uid="uid://dilr5r6k3ik7t" path="res://scenes/manipulatorsphere.tres" id="2_1iign"]
[ext_resource type="Script" path="res://scenes/manipulator/visual_attractor_sphere.gd" id="1_62tkw"]
[ext_resource type="Shader" uid="uid://dilr5r6k3ik7t" path="res://scenes/manipulator/manipulatorsphere.tres" id="2_1iign"]
[sub_resource type="SphereMesh" id="SphereMesh_56y52"]
radius = 1.0

View file

@ -1,6 +1,6 @@
[gd_scene load_steps=2 format=3 uid="uid://cyd8poa47ir2i"]
[ext_resource type="Script" path="res://scenes/performance_settings_menu.gd" id="1_20qfm"]
[ext_resource type="Script" path="res://scenes/performance_settings/performance_settings_menu.gd" id="1_20qfm"]
[node name="PerformanceSettingsMenu" type="Node2D"]
script = ExtResource("1_20qfm")

View file

@ -1,7 +0,0 @@
[gd_scene load_steps=2 format=3 uid="uid://4aglyx1y67kh"]
[ext_resource type="PackedScene" uid="uid://7uc6tf2tvn1k" path="res://scenes/xr_origin_3d.tscn" id="1_42h7e"]
[node name="PlayerRig" type="Node3D"]
[node name="XROrigin3D" parent="." instance=ExtResource("1_42h7e")]

View file

@ -1,111 +0,0 @@
# This script is designed to drive gameplay logic based on the number of GPUParticles3D
# that “hit” various static target areas in 3D space. A cloned particle system (rendered
# in a dedicated SubViewport on layer 20) uses a special testing shader that, for each particle,
# checks its 3D world-space position against up to eight static target bounding boxes.
#
# The testing shader maps particles that hit a target into a designated horizontal slice of clip
# space so that the SubViewport (sized 8×1 pixels) accumulates red intensity in each column. Higher
# red intensity means more particles hit that target.
#
# In this version, the targets are static so their parameters (center, extents, and the inverse of
# their 3×3 rotation basis) are computed once and sent to the shader. The attractors are shared
# (set up in the main scene and used by the cloned particle system) rather than cloned.
#
# Other game scripts can connect to the "target_occupancy_changed" signal, which is emitted each frame
# for every target (07) with the measured red intensity (occupancy).
extends Node3D
# Signal emitted when the occupancy of a target changes. Sent every frame.
# occupancy is a float between 0 and 1 corresponding to how many particles are in the target.
signal target_occupancy_changed(target_index: int, occupancy: float)
# Optional debug mesh to visualize the viewport texture
@export var debug_mesh_path: NodePath
var debug_mesh: MeshInstance3D
# Exported node paths.
@export var source_particles_path: NodePath # The original GPUParticles3D to clone for collision detection.
@export var target_collision_shapes_paths: Array[NodePath] = [] # Array of CollisionShape3D nodes (each with a BoxShape3D).
# Path to the testing shader resource.
const shader = preload("res://scenes/particle_test.gdshader")
# Maximum number of target areas supported.
const MAX_TARGETS: int = 8
# References.
var clone_particles: GPUParticles3D
@onready var sub_viewport: SubViewport = $SubViewport
var target_collision_shapes: Array[CollisionShape3D] = []
func _ready():
# Get references from the scene.
var source_particles = get_node(source_particles_path) as GPUParticles3D
for path in target_collision_shapes_paths:
var shape = get_node(path) as CollisionShape3D
target_collision_shapes.append(shape)
# Pad to MAX_TARGETS if necessary.
while target_collision_shapes.size() < MAX_TARGETS:
target_collision_shapes.append(null)
# Set up debug mesh if path provided
if not debug_mesh_path.is_empty():
debug_mesh = get_node(debug_mesh_path)
if debug_mesh:
var debug_material = debug_mesh.get_surface_override_material(0)
debug_material.albedo_texture = sub_viewport.get_texture()
debug_mesh.set_surface_override_material(0, debug_material)
# Load the testing shader and assign it to the cloned particle systems draw pass.
var shader_material = ShaderMaterial.new()
shader_material.shader = shader
# Clone the source particles and set the shader material.
clone_particles = source_particles.duplicate()
# diable trails since they add extra meshes.
clone_particles.trail_enabled = false
# replace the draw pass with a simple quad mesh.
clone_particles.draw_pass_1 = QuadMesh.new()
# and set the special material
clone_particles.draw_pass_1.surface_set_material(0, shader_material)
# set visual layer to 20 so it doesn't draw on main camera
clone_particles.layers = 0
clone_particles.set_layer_mask_value(20, true)
# add clone as child of SubViewport
sub_viewport.add_child(clone_particles)
# Precompute static target parameters and set them in the shader.
var centers: Array = [] # Array of Vector3 centers.
var extents: Array = [] # Array of Vector3 half-sizes.
var inv_bases: Array = [] # Array of mat3 (precomputed inverse bases).
for i in range(MAX_TARGETS):
if i < target_collision_shapes.size() and target_collision_shapes[i] and (target_collision_shapes[i].shape is BoxShape3D):
var box: BoxShape3D = target_collision_shapes[i].shape as BoxShape3D
var gxf: Transform3D = target_collision_shapes[i].global_transform
print("Target %d:" % i)
print(" Box extents: ", box.extents)
print(" Global transform origin: ", gxf.origin)
print(" Global transform basis: ", gxf.basis)
centers.append(gxf.origin)
extents.append(box.extents)
inv_bases.append(gxf.basis.inverse()) # Precompute the inverse once.
else:
centers.append(Vector3.ZERO)
extents.append(Vector3.ZERO) # Zero extents means this target is disabled.
inv_bases.append(Basis.IDENTITY)
shader_material.set_shader_parameter("target_center", centers)
shader_material.set_shader_parameter("target_extents", extents)
shader_material.set_shader_parameter("target_inv_basis", inv_bases)
func _process(_delta):
# Each frame, read back the 8 pixel wide image from the SubViewport.
var viewport_tex = sub_viewport.get_texture()
if viewport_tex:
var img: Image = viewport_tex.get_image()
if img:
for x in range(target_collision_shapes.size()):
var col: Color = img.get_pixel(x, 0)
var occupancy: float = col.r # The red channel intensity.
target_occupancy_changed.emit(x, occupancy)

33
scenes/target.gd Normal file
View file

@ -0,0 +1,33 @@
# A target that can be hit by gpu particles. the ProxyCollisionDetector
# does the actual detection. Expects a MeshInstance3d child as a visual
# and an AudioStreamPlayer3d to vary the volume based on the number of
# particles hitting it. As well as a CollisionShape3d for the collision
class_name Target
# this is kind of silly, but I'd like to use the actual CollisionShape3d
# node for the collision shape since it has an editor gizmo thing already built.
# this doesn't really interact with the real cpu physics engine though.
extends StaticBody3D
@export var lerp_speed: float = 5.0
@onready var mesh: MeshInstance3D = $MeshInstance3D
@onready var audio: AudioStreamPlayer3D = $AudioStreamPlayer3D
var _target_occupancy: float = 0.0
var _current_occupancy: float = 0.0
func _ready() -> void:
pass
func _process(delta: float) -> void:
_current_occupancy = lerp(_current_occupancy, _target_occupancy, lerp_speed * delta)
var material = mesh.get_surface_override_material(0)
if material:
material.emission_energy_multiplier = _current_occupancy * 10
if audio:
audio.volume_db = linear_to_db(_current_occupancy)
# called from the ProxyCollisionDetector
func set_occupancy(occupancy: float) -> void:
_target_occupancy = occupancy

View file

@ -1,29 +0,0 @@
extends StaticBody3D
@export var index: int = 0
@export var lerp_speed: float = 5.0
@onready var mesh: MeshInstance3D = $MeshInstance3D
@onready var audio: AudioStreamPlayer3D = $AudioStreamPlayer3D
var _target_occupancy: float = 0.0
var _current_occupancy: float = 0.0
func _ready() -> void:
pass
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
_current_occupancy = lerp(_current_occupancy, _target_occupancy, lerp_speed * delta)
var material = mesh.get_surface_override_material(0)
if material:
material.emission_energy_multiplier = _current_occupancy * 10
if audio:
audio.volume_db = linear_to_db(_current_occupancy)
func _on_proxy_collision_detector_target_occupancy_changed(target_index: int, occupancy: float) -> void:
if target_index == index:
_target_occupancy = occupancy

Binary file not shown.

View file

@ -3,15 +3,15 @@
importer="3d_texture"
type="CompressedTexture3D"
uid="uid://c6uya54wegrle"
path="res://.godot/imported/title_scene.GPUParticlesCollisionSDF3D_data.exr-565c568c16b38957e36f9d809ba1cd69.ctex3d"
path="res://.godot/imported/title_scene.GPUParticlesCollisionSDF3D_data.exr-8dccd3fe02ba2b919514487dd8c172de.ctex3d"
metadata={
"vram_texture": false
}
[deps]
source_file="res://scenes/title_scene.GPUParticlesCollisionSDF3D_data.exr"
dest_files=["res://.godot/imported/title_scene.GPUParticlesCollisionSDF3D_data.exr-565c568c16b38957e36f9d809ba1cd69.ctex3d"]
source_file="res://scenes/title_scene/title_scene.GPUParticlesCollisionSDF3D_data.exr"
dest_files=["res://.godot/imported/title_scene.GPUParticlesCollisionSDF3D_data.exr-8dccd3fe02ba2b919514487dd8c172de.ctex3d"]
[params]

Binary file not shown.

View file

@ -5,21 +5,63 @@
[ext_resource type="PackedScene" uid="uid://clc5dre31iskm" path="res://addons/godot-xr-tools/xr/start_xr.tscn" id="3_hdcpx"]
[ext_resource type="Environment" uid="uid://c1yf8e4qr42hr" path="res://scenes/environment.tres" id="3_v4538"]
[ext_resource type="PackedScene" uid="uid://57q7hhomocdh" path="res://addons/godot-xr-tools/objects/world_grab_area.tscn" id="4_nruf2"]
[ext_resource type="VoxelGIData" uid="uid://bxphdae7hohsh" path="res://scenes/title_scene.VoxelGI_data.res" id="5_ebg1r"]
[ext_resource type="CompressedTexture3D" uid="uid://c6uya54wegrle" path="res://scenes/title_scene.GPUParticlesCollisionSDF3D_data.exr" id="6_l378m"]
[ext_resource type="PackedScene" uid="uid://rsrnbs08nv1n" path="res://scenes/proxy_collision_detector.tscn" id="7_1kkxh"]
[ext_resource type="Script" path="res://scenes/voxel_gi_toggle.gd" id="7_4p11s"]
[ext_resource type="VoxelGIData" uid="uid://bxphdae7hohsh" path="res://scenes/title_scene/title_scene.VoxelGI_data.res" id="5_ebg1r"]
[ext_resource type="CompressedTexture3D" uid="uid://c6uya54wegrle" path="res://scenes/title_scene/title_scene.GPUParticlesCollisionSDF3D_data.exr" id="6_l378m"]
[ext_resource type="PackedScene" uid="uid://rsrnbs08nv1n" path="res://scenes/collisions/proxy_collision_detector.tscn" id="7_1kkxh"]
[ext_resource type="Script" path="res://scenes/performance_settings/voxel_gi_toggle.gd" id="7_4p11s"]
[ext_resource type="PackedScene" uid="uid://c20kawop2lrv" path="res://assets/Arcane Source 2.glb" id="8_h17hj"]
[ext_resource type="Script" path="res://scenes/target_highlight_test.gd" id="9_jig6v"]
[ext_resource type="Script" path="res://scenes/target.gd" id="11_7oif6"]
[ext_resource type="AudioStream" uid="uid://dnwh2iqwi86ku" path="res://assets/04 bass.ogg" id="12_8dki8"]
[ext_resource type="AudioStream" uid="uid://cv0f1tu5pac60" path="res://assets/02 midpiano.ogg" id="13_6bsa0"]
[ext_resource type="PackedScene" uid="uid://clujaf3u776a3" path="res://addons/godot-xr-tools/objects/viewport_2d_in_3d.tscn" id="13_ab6mb"]
[ext_resource type="AudioStream" uid="uid://cqb1bo72232vs" path="res://assets/03 highpiano.ogg" id="14_8b4v6"]
[ext_resource type="PackedScene" uid="uid://cyd8poa47ir2i" path="res://scenes/performance_settings_menu.tscn" id="14_s5dwy"]
[ext_resource type="PackedScene" uid="uid://bifpsyvpcem3a" path="res://scenes/manipulator.tscn" id="17_uqqr1"]
[ext_resource type="PackedScene" uid="uid://ccmx5v2601k8q" path="res://scenes/visual_attractor_sphere.tscn" id="18_qmvne"]
[ext_resource type="PackedScene" uid="uid://cyd8poa47ir2i" path="res://scenes/performance_settings/performance_settings_menu.tscn" id="14_s5dwy"]
[ext_resource type="PackedScene" uid="uid://bifpsyvpcem3a" path="res://scenes/manipulator/manipulator.tscn" id="17_uqqr1"]
[ext_resource type="PackedScene" uid="uid://ccmx5v2601k8q" path="res://scenes/manipulator/visual_attractor_sphere.tscn" id="18_qmvne"]
[ext_resource type="Script" path="res://scenes/ambient_particles.gd" id="19_er8ew"]
[sub_resource type="BoxShape3D" id="BoxShape3D_gj4t1"]
size = Vector3(100, 100, 100)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_a5rjy"]
shading_mode = 0
[sub_resource type="Curve" id="Curve_4ehg2"]
_data = [Vector2(0.0015674, 0), 0.0, 0.0, 0, 0, Vector2(0.23511, 1), -0.0427111, -0.0427111, 0, 0, Vector2(0.634796, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0]
point_count = 4
[sub_resource type="CurveTexture" id="CurveTexture_bdt6v"]
curve = SubResource("Curve_4ehg2")
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_afs4e"]
emission_shape = 3
emission_box_extents = Vector3(2, 2, 2)
spread = 180.0
initial_velocity_min = 0.01
initial_velocity_max = 0.03
gravity = Vector3(0, 0, 0)
scale_curve = SubResource("CurveTexture_bdt6v")
turbulence_noise_strength = 0.1
turbulence_noise_scale = 4.714
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gxwyq"]
shading_mode = 2
emission_enabled = true
emission = Color(1, 1, 1, 1)
emission_energy_multiplier = 0.1
billboard_mode = 1
billboard_keep_scale = true
distance_fade_mode = 2
distance_fade_min_distance = 1.5
distance_fade_max_distance = 2.0
[sub_resource type="QuadMesh" id="QuadMesh_f40pn"]
material = SubResource("StandardMaterial3D_gxwyq")
size = Vector2(0.005, 0.005)
[sub_resource type="BoxShape3D" id="BoxShape3D_jwkgy"]
size = Vector3(40, 40, 40)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lvd12"]
albedo_color = Color(0.563626, 0.563626, 0.563625, 1)
@ -37,9 +79,6 @@ font_size = 36
pixel_size = 0.1
depth = 0.5
[sub_resource type="BoxShape3D" id="BoxShape3D_gj4t1"]
size = Vector3(100, 100, 100)
[sub_resource type="Gradient" id="Gradient_0ygfi"]
colors = PackedColorArray(0.764539, 0.208898, 0.642811, 1, 1, 1, 3, 1)
@ -132,12 +171,6 @@ emission_energy_multiplier = 0.61
rim = 0.38
refraction_scale = 0.88
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_a5rjy"]
shading_mode = 0
[sub_resource type="BoxShape3D" id="BoxShape3D_jwkgy"]
size = Vector3(40, 40, 40)
[sub_resource type="PrismMesh" id="PrismMesh_be80n"]
size = Vector3(0.2, 0.2, 0.2)
@ -145,63 +178,11 @@ size = Vector3(0.2, 0.2, 0.2)
emission_enabled = true
emission = Color(0.208505, 0.70691, 0.626474, 1)
[sub_resource type="Curve" id="Curve_4ehg2"]
_data = [Vector2(0.0015674, 0), 0.0, 0.0, 0, 0, Vector2(0.23511, 1), -0.0427111, -0.0427111, 0, 0, Vector2(0.634796, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0]
point_count = 4
[sub_resource type="CurveTexture" id="CurveTexture_bdt6v"]
curve = SubResource("Curve_4ehg2")
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_afs4e"]
emission_shape = 3
emission_box_extents = Vector3(2, 2, 2)
spread = 180.0
initial_velocity_min = 0.01
initial_velocity_max = 0.03
gravity = Vector3(0, 0, 0)
scale_curve = SubResource("CurveTexture_bdt6v")
turbulence_noise_strength = 0.1
turbulence_noise_scale = 4.714
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gxwyq"]
shading_mode = 2
emission_enabled = true
emission = Color(1, 1, 1, 1)
emission_energy_multiplier = 0.1
billboard_mode = 1
billboard_keep_scale = true
distance_fade_mode = 2
distance_fade_min_distance = 1.5
distance_fade_max_distance = 2.0
[sub_resource type="QuadMesh" id="QuadMesh_f40pn"]
material = SubResource("StandardMaterial3D_gxwyq")
size = Vector2(0.005, 0.005)
[node name="TitleScene" type="Node3D"]
script = ExtResource("1_t86sx")
[node name="XROrigin3D" parent="." instance=ExtResource("2_xk21l")]
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = ExtResource("3_v4538")
[node name="Floor" type="MeshInstance3D" parent="."]
mesh = SubResource("PlaneMesh_gsjte")
[node name="Title" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, -10.1744)
mesh = SubResource("TextMesh_6owc4")
[node name="OmniLight3D" type="OmniLight3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.38227, 3.47531, -13.7485)
light_energy = 1.308
light_bake_mode = 1
light_cull_mask = 4294443007
shadow_enabled = true
omni_range = 14.8072
metadata/_edit_lock_ = true
[node name="StartXR" parent="." instance=ExtResource("3_hdcpx")]
[node name="WorldGrabArea" parent="." instance=ExtResource("4_nruf2")]
@ -211,12 +192,72 @@ gravity = 0.0
[node name="CollisionShape3D" type="CollisionShape3D" parent="WorldGrabArea"]
shape = SubResource("BoxShape3D_gj4t1")
[node name="PerformanceMenu" parent="." instance=ExtResource("13_ab6mb")]
transform = Transform3D(0.866025, 0, -0.5, 0, 1, 0, 0.5, 0, 0.866025, 5.61352, 2, -3)
screen_size = Vector2(2.5, 1.5)
scene = ExtResource("14_s5dwy")
viewport_size = Vector2(250, 150)
update_mode = 2
material = SubResource("StandardMaterial3D_a5rjy")
scene_properties_keys = PackedStringArray("performance_settings_menu.gd")
[node name="AmbientParticles" type="GPUParticles3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1)
cast_shadow = 0
gi_mode = 0
amount = 2000
lifetime = 3.0
preprocess = 3.0
randomness = 0.28
process_material = SubResource("ParticleProcessMaterial_afs4e")
draw_pass_1 = SubResource("QuadMesh_f40pn")
script = ExtResource("19_er8ew")
[node name="VoxelGI" type="VoxelGI" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.785156, -6.01978)
size = Vector3(31, 6.57, 31)
data = ExtResource("5_ebg1r")
script = ExtResource("7_4p11s")
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = ExtResource("3_v4538")
[node name="ReverbArea" type="Area3D" parent="."]
reverb_bus_enabled = true
reverb_bus_name = &"Reverb"
reverb_bus_amount = 1.0
[node name="CollisionShape3D" type="CollisionShape3D" parent="ReverbArea"]
shape = SubResource("BoxShape3D_jwkgy")
[node name="Floor" type="MeshInstance3D" parent="."]
mesh = SubResource("PlaneMesh_gsjte")
[node name="Title" type="MeshInstance3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, -10.1744)
mesh = SubResource("TextMesh_6owc4")
[node name="Arcane Source 2" parent="." instance=ExtResource("8_h17hj")]
transform = Transform3D(0.837576, 0, 0.546321, 0, 1, 0, -0.546321, 0, 0.837576, -3.43117, -0.0137267, -5.21196)
[node name="OmniLight3D" type="OmniLight3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3.38227, 3.47531, -13.7485)
light_energy = 1.308
light_bake_mode = 1
light_cull_mask = 4294443007
shadow_enabled = true
omni_range = 14.8072
metadata/_edit_lock_ = true
[node name="ProxyCollisionDetector" parent="." instance=ExtResource("7_1kkxh")]
source_particles_paths = Array[NodePath]([NodePath("../GPUParticles3D")])
[node name="GPUParticlesCollisionSDF3D" type="GPUParticlesCollisionSDF3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.171387, 1.63794, -9.15827)
size = Vector3(13.1045, 5.27588, 4.47766)
bake_mask = 4293918721
texture = ExtResource("6_l378m")
[node name="GPUParticles3D" type="GPUParticles3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.26492, 1.52311, -8.99933)
cast_shadow = 0
@ -231,24 +272,11 @@ trail_lifetime = 0.5
process_material = SubResource("ParticleProcessMaterial_y126y")
draw_pass_1 = SubResource("TubeTrailMesh_xiw4w")
[node name="GPUParticlesCollisionSDF3D" type="GPUParticlesCollisionSDF3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.171387, 1.63794, -9.15827)
size = Vector3(13.1045, 5.27588, 4.47766)
bake_mask = 4293918721
texture = ExtResource("6_l378m")
[node name="ProxyCollisionDetector" parent="." instance=ExtResource("7_1kkxh")]
source_particles_path = NodePath("../GPUParticles3D")
target_collision_shapes_paths = Array[NodePath]([NodePath("../Target1/CollisionShape3D1"), NodePath("../Target2/CollisionShape3D2"), NodePath("../Target3/CollisionShape3D3")])
[node name="Arcane Source 2" parent="." instance=ExtResource("8_h17hj")]
transform = Transform3D(0.837576, 0, 0.546321, 0, 1, 0, -0.546321, 0, 0.837576, -3.43117, -0.0137267, -5.21196)
[node name="Target1" type="StaticBody3D" parent="."]
[node name="Target1" type="StaticBody3D" parent="." groups=["targets"]]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.31548, 4.27292, -10.1667)
script = ExtResource("9_jig6v")
script = ExtResource("11_7oif6")
[node name="CollisionShape3D1" type="CollisionShape3D" parent="Target1"]
[node name="CollisionShape3D" type="CollisionShape3D" parent="Target1"]
shape = SubResource("BoxShape3D_gofwq")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Target1"]
@ -262,12 +290,11 @@ stream = ExtResource("14_8b4v6")
volume_db = -80.0
autoplay = true
[node name="Target2" type="StaticBody3D" parent="."]
[node name="Target2" type="StaticBody3D" parent="." groups=["targets"]]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.21807, 4.27292, -10.0553)
script = ExtResource("9_jig6v")
index = 1
script = ExtResource("11_7oif6")
[node name="CollisionShape3D2" type="CollisionShape3D" parent="Target2"]
[node name="CollisionShape3D" type="CollisionShape3D" parent="Target2"]
shape = SubResource("BoxShape3D_gofwq")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Target2"]
@ -281,12 +308,11 @@ stream = ExtResource("13_6bsa0")
volume_db = -80.0
autoplay = true
[node name="Target3" type="StaticBody3D" parent="."]
[node name="Target3" type="StaticBody3D" parent="." groups=["targets"]]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.005826, 1.90465, -9.1875)
script = ExtResource("9_jig6v")
index = 2
script = ExtResource("11_7oif6")
[node name="CollisionShape3D3" type="CollisionShape3D" parent="Target3"]
[node name="CollisionShape3D" type="CollisionShape3D" parent="Target3"]
shape = SubResource("BoxShape3D_gofwq")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Target3"]
@ -300,23 +326,6 @@ stream = ExtResource("12_8dki8")
volume_db = -80.0
autoplay = true
[node name="PerformanceMenu" parent="." instance=ExtResource("13_ab6mb")]
transform = Transform3D(0.866025, 0, -0.5, 0, 1, 0, 0.5, 0, 0.866025, 5.61352, 2, -3)
screen_size = Vector2(2.5, 1.5)
scene = ExtResource("14_s5dwy")
viewport_size = Vector2(250, 150)
update_mode = 2
material = SubResource("StandardMaterial3D_a5rjy")
scene_properties_keys = PackedStringArray("performance_settings_menu.gd")
[node name="ReverbArea" type="Area3D" parent="."]
reverb_bus_enabled = true
reverb_bus_name = &"Reverb"
reverb_bus_amount = 1.0
[node name="CollisionShape3D" type="CollisionShape3D" parent="ReverbArea"]
shape = SubResource("BoxShape3D_jwkgy")
[node name="Manipulator0" parent="." instance=ExtResource("17_uqqr1")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.63926, -9.75923)
@ -338,19 +347,3 @@ transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0,
mesh = SubResource("PrismMesh_be80n")
skeleton = NodePath("")
surface_material_override/0 = SubResource("StandardMaterial3D_hyt1m")
[node name="AmbientParticles" type="GPUParticles3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1)
cast_shadow = 0
gi_mode = 0
amount = 2000
lifetime = 3.0
preprocess = 3.0
randomness = 0.28
process_material = SubResource("ParticleProcessMaterial_afs4e")
draw_pass_1 = SubResource("QuadMesh_f40pn")
script = ExtResource("19_er8ew")
[connection signal="target_occupancy_changed" from="ProxyCollisionDetector" to="Target1" method="_on_proxy_collision_detector_target_occupancy_changed"]
[connection signal="target_occupancy_changed" from="ProxyCollisionDetector" to="Target2" method="_on_proxy_collision_detector_target_occupancy_changed"]
[connection signal="target_occupancy_changed" from="ProxyCollisionDetector" to="Target3" method="_on_proxy_collision_detector_target_occupancy_changed"]

View file

@ -0,0 +1,38 @@
[gd_resource type="ParticleProcessMaterial" load_steps=5 format=3 uid="uid://b4vq6ouyv64bx"]
[sub_resource type="Gradient" id="Gradient_0ygfi"]
colors = PackedColorArray(0.720471, 0.182584, 0.797749, 1, 1, 1, 3, 1)
[sub_resource type="GradientTexture1D" id="GradientTexture1D_e428v"]
gradient = SubResource("Gradient_0ygfi")
use_hdr = true
[sub_resource type="Curve" id="Curve_g0jsu"]
_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(0.905229, 0.968574), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0]
point_count = 3
[sub_resource type="CurveTexture" id="CurveTexture_qnerq"]
curve = SubResource("Curve_g0jsu")
[resource]
resource_local_to_scene = true
emission_shape = 3
emission_box_extents = Vector3(0.1, 0.1, 0.1)
spread = 0.0
initial_velocity_min = 1.0
initial_velocity_max = 1.0
gravity = Vector3(0, 0, 0)
damping_min = 0.05
damping_max = 0.05
scale_max = 1.3
scale_curve = SubResource("CurveTexture_qnerq")
color = Color(0.288256, 0.558565, 0.665093, 1)
color_ramp = SubResource("GradientTexture1D_e428v")
hue_variation_min = -0.1
hue_variation_max = 0.1
turbulence_noise_scale = 6.228
turbulence_influence_min = 0.01
turbulence_influence_max = 0.01
collision_mode = 1
collision_friction = 0.06
collision_bounce = 1.0

View file

@ -0,0 +1,23 @@
[gd_resource type="TubeTrailMesh" load_steps=3 format=3 uid="uid://cs018yg173f03"]
[sub_resource type="Curve" id="Curve_y0yng"]
_data = [Vector2(0, 0), 0.0, 0.0, 0, 0, Vector2(0.149718, 0.977694), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0]
point_count = 3
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_xblhm"]
shading_mode = 2
vertex_color_use_as_albedo = true
vertex_color_is_srgb = true
emission_enabled = true
emission = Color(1.5, 1, 2, 1)
emission_energy_multiplier = 4.15
disable_receive_shadows = true
use_particle_trails = true
[resource]
material = SubResource("StandardMaterial3D_xblhm")
radius = 0.002
radial_steps = 4
cap_top = false
cap_bottom = false
curve = SubResource("Curve_y0yng")

View file

@ -0,0 +1,26 @@
[remap]
importer="3d_texture"
type="CompressedTexture3D"
uid="uid://bgojedwr31dki"
path="res://.godot/imported/valentine_scene.GPUParticlesCollisionSDF3D_data.exr-8f785253cc51ed186ab9079451bae388.ctex3d"
metadata={
"vram_texture": false
}
[deps]
source_file="res://scenes/valentine_scene/valentine_scene.GPUParticlesCollisionSDF3D_data.exr"
dest_files=["res://.godot/imported/valentine_scene.GPUParticlesCollisionSDF3D_data.exr-8f785253cc51ed186ab9079451bae388.ctex3d"]
[params]
compress/mode=3
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/channel_pack=1
mipmaps/generate=false
mipmaps/limit=-1
slices/horizontal=1
slices/vertical=48

View file

@ -0,0 +1,342 @@
[gd_scene load_steps=43 format=3 uid="uid://4hr2m5ibwhpy"]
[ext_resource type="Script" path="res://scenes/base_game_scene.gd" id="1_fbwwc"]
[ext_resource type="PackedScene" uid="uid://7uc6tf2tvn1k" path="res://scenes/xr_origin_3d.tscn" id="2_i3vfe"]
[ext_resource type="PackedScene" uid="uid://clc5dre31iskm" path="res://addons/godot-xr-tools/xr/start_xr.tscn" id="3_d0uvh"]
[ext_resource type="PackedScene" uid="uid://57q7hhomocdh" path="res://addons/godot-xr-tools/objects/world_grab_area.tscn" id="4_54g2v"]
[ext_resource type="Script" path="res://scenes/ambient_particles.gd" id="7_r0krt"]
[ext_resource type="VoxelGIData" uid="uid://bxphdae7hohsh" path="res://scenes/title_scene/title_scene.VoxelGI_data.res" id="8_qelii"]
[ext_resource type="Script" path="res://scenes/performance_settings/voxel_gi_toggle.gd" id="9_busdy"]
[ext_resource type="Environment" uid="uid://c1yf8e4qr42hr" path="res://scenes/environment.tres" id="10_wr4yd"]
[ext_resource type="PackedScene" uid="uid://c20kawop2lrv" path="res://assets/Arcane Source 2.glb" id="11_1bcu4"]
[ext_resource type="CompressedTexture3D" uid="uid://bgojedwr31dki" path="res://scenes/valentine_scene/valentine_scene.GPUParticlesCollisionSDF3D_data.exr" id="11_hn2bf"]
[ext_resource type="PackedScene" uid="uid://rsrnbs08nv1n" path="res://scenes/collisions/proxy_collision_detector.tscn" id="12_8ub4t"]
[ext_resource type="TubeTrailMesh" uid="uid://cs018yg173f03" path="res://scenes/valentine_scene/new_tube_trail_mesh.tres" id="12_qbtqr"]
[ext_resource type="Material" uid="uid://b4vq6ouyv64bx" path="res://scenes/valentine_scene/new_particle_process_material.tres" id="13_0sy3c"]
[ext_resource type="Script" path="res://scenes/target.gd" id="14_luvo8"]
[ext_resource type="AudioStream" uid="uid://cqb1bo72232vs" path="res://assets/03 highpiano.ogg" id="15_gvfbh"]
[ext_resource type="AudioStream" uid="uid://cv0f1tu5pac60" path="res://assets/02 midpiano.ogg" id="16_rhkn8"]
[ext_resource type="AudioStream" uid="uid://dnwh2iqwi86ku" path="res://assets/04 bass.ogg" id="17_gyt33"]
[ext_resource type="PackedScene" uid="uid://bifpsyvpcem3a" path="res://scenes/manipulator/manipulator.tscn" id="18_wecvv"]
[ext_resource type="PackedScene" uid="uid://ccmx5v2601k8q" path="res://scenes/manipulator/visual_attractor_sphere.tscn" id="19_xjpkb"]
[sub_resource type="BoxShape3D" id="BoxShape3D_gj4t1"]
size = Vector3(100, 100, 100)
[sub_resource type="Curve" id="Curve_4ehg2"]
_data = [Vector2(0.0015674, 0), 0.0, 0.0, 0, 0, Vector2(0.23511, 1), -0.0427111, -0.0427111, 0, 0, Vector2(0.634796, 1), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0]
point_count = 4
[sub_resource type="CurveTexture" id="CurveTexture_bdt6v"]
curve = SubResource("Curve_4ehg2")
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_afs4e"]
emission_shape = 3
emission_box_extents = Vector3(2, 2, 2)
spread = 180.0
initial_velocity_min = 0.01
initial_velocity_max = 0.03
gravity = Vector3(0, 0, 0)
scale_curve = SubResource("CurveTexture_bdt6v")
turbulence_noise_strength = 0.1
turbulence_noise_scale = 4.714
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_gxwyq"]
shading_mode = 2
emission_enabled = true
emission = Color(1, 1, 1, 1)
emission_energy_multiplier = 0.1
billboard_mode = 1
billboard_keep_scale = true
distance_fade_mode = 2
distance_fade_min_distance = 1.5
distance_fade_max_distance = 2.0
[sub_resource type="QuadMesh" id="QuadMesh_f40pn"]
material = SubResource("StandardMaterial3D_gxwyq")
size = Vector2(0.005, 0.005)
[sub_resource type="BoxShape3D" id="BoxShape3D_jwkgy"]
size = Vector3(40, 40, 40)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_lvd12"]
albedo_color = Color(0.563626, 0.563626, 0.563625, 1)
[sub_resource type="PlaneMesh" id="PlaneMesh_gsjte"]
material = SubResource("StandardMaterial3D_lvd12")
size = Vector2(100, 100)
[sub_resource type="Gradient" id="Gradient_0ygfi"]
colors = PackedColorArray(0.720471, 0.182584, 0.797749, 1, 1, 1, 3, 1)
[sub_resource type="GradientTexture1D" id="GradientTexture1D_e428v"]
gradient = SubResource("Gradient_0ygfi")
use_hdr = true
[sub_resource type="Curve" id="Curve_g0jsu"]
_data = [Vector2(0, 1), 0.0, 0.0, 0, 0, Vector2(0.905229, 0.968574), 0.0, 0.0, 0, 0, Vector2(1, 0), 0.0, 0.0, 0, 0]
point_count = 3
[sub_resource type="CurveTexture" id="CurveTexture_qnerq"]
curve = SubResource("Curve_g0jsu")
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_efdjr"]
resource_local_to_scene = true
emission_shape = 3
emission_box_extents = Vector3(0.1, 0.1, 0.1)
spread = 0.0
initial_velocity_min = 1.0
initial_velocity_max = 1.0
gravity = Vector3(0, 0, 0)
damping_min = 0.05
damping_max = 0.05
scale_max = 1.3
scale_curve = SubResource("CurveTexture_qnerq")
color = Color(0.288256, 0.558565, 0.665093, 1)
color_ramp = SubResource("GradientTexture1D_e428v")
hue_variation_min = -0.1
hue_variation_max = 0.1
turbulence_noise_scale = 6.228
turbulence_influence_min = 0.01
turbulence_influence_max = 0.01
collision_mode = 1
collision_friction = 0.06
collision_bounce = 1.0
[sub_resource type="BoxShape3D" id="BoxShape3D_gofwq"]
size = Vector3(0.3, 0.3, 0.3)
[sub_resource type="BoxMesh" id="BoxMesh_0cc1r"]
size = Vector3(0.3, 0.3, 0.3)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_m6mak"]
transparency = 1
albedo_color = Color(1, 1, 1, 0.3)
emission_enabled = true
emission = Color(1, 1, 1, 1)
emission_energy_multiplier = 0.61
rim = 0.38
refraction_scale = 0.88
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_sffkp"]
transparency = 1
albedo_color = Color(1, 1, 1, 0.3)
emission_enabled = true
emission = Color(1, 1, 1, 1)
emission_energy_multiplier = 0.61
rim = 0.38
refraction_scale = 0.88
[sub_resource type="BoxMesh" id="BoxMesh_ootr5"]
size = Vector3(0.3, 0.3, 0.3)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_o8q0i"]
transparency = 1
albedo_color = Color(1, 1, 1, 0.3)
emission_enabled = true
emission = Color(1, 1, 1, 1)
emission_energy_multiplier = 0.61
rim = 0.38
refraction_scale = 0.88
[sub_resource type="PrismMesh" id="PrismMesh_be80n"]
size = Vector3(0.2, 0.2, 0.2)
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_hyt1m"]
emission_enabled = true
emission = Color(0.208505, 0.70691, 0.626474, 1)
[sub_resource type="CylinderMesh" id="CylinderMesh_7qhvg"]
top_radius = 0.3
bottom_radius = 0.3
height = 5.0
[node name="TitleScene" type="Node3D"]
script = ExtResource("1_fbwwc")
[node name="XROrigin3D" parent="." instance=ExtResource("2_i3vfe")]
[node name="StartXR" parent="." instance=ExtResource("3_d0uvh")]
[node name="WorldGrabArea" parent="." instance=ExtResource("4_54g2v")]
gravity_space_override = 3
gravity = 0.0
[node name="CollisionShape3D" type="CollisionShape3D" parent="WorldGrabArea"]
shape = SubResource("BoxShape3D_gj4t1")
[node name="AmbientParticles" type="GPUParticles3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -1)
cast_shadow = 0
gi_mode = 0
amount = 2000
lifetime = 3.0
preprocess = 3.0
randomness = 0.28
process_material = SubResource("ParticleProcessMaterial_afs4e")
draw_pass_1 = SubResource("QuadMesh_f40pn")
script = ExtResource("7_r0krt")
[node name="VoxelGI" type="VoxelGI" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.4, -3.27626)
subdiv = 0
size = Vector3(10, 5, 10)
data = ExtResource("8_qelii")
script = ExtResource("9_busdy")
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = ExtResource("10_wr4yd")
[node name="ReverbArea" type="Area3D" parent="."]
reverb_bus_enabled = true
reverb_bus_name = &"Reverb"
reverb_bus_amount = 1.0
[node name="CollisionShape3D" type="CollisionShape3D" parent="ReverbArea"]
shape = SubResource("BoxShape3D_jwkgy")
[node name="Floor" type="MeshInstance3D" parent="."]
mesh = SubResource("PlaneMesh_gsjte")
[node name="SpotLight3D" type="SpotLight3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 0.571688, 0.820471, 0, -0.820471, 0.571688, 0, 4.06392, -0.511663)
shadow_enabled = true
spot_range = 40.0
[node name="Arcane Source 2" parent="." instance=ExtResource("11_1bcu4")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -3.25005)
[node name="ProxyCollisionDetector" parent="." instance=ExtResource("12_8ub4t")]
source_particles_paths = Array[NodePath]([NodePath("../GPUParticles3D"), NodePath("../GPUParticles3D2")])
[node name="GPUParticlesCollisionSDF3D" type="GPUParticlesCollisionSDF3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.171387, 1.59386, -2.93327)
size = Vector3(4, 4, 3)
bake_mask = 4293918721
texture = ExtResource("11_hn2bf")
[node name="GPUParticles3D" type="GPUParticles3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.29421, 1.523, -2.03293)
cast_shadow = 0
gi_mode = 2
amount = 500
lifetime = 4.5
randomness = 0.18
visibility_aabb = AABB(-100, -100, -100, 200, 200, 200)
transform_align = 2
trail_enabled = true
trail_lifetime = 0.5
process_material = SubResource("ParticleProcessMaterial_efdjr")
draw_pass_1 = ExtResource("12_qbtqr")
[node name="GPUParticles3D2" type="GPUParticles3D" parent="."]
transform = Transform3D(-1, 0, 8.74228e-08, 0, 1, 0, -8.74228e-08, 0, -1, 2.30577, 1.52311, -2.0325)
cast_shadow = 0
gi_mode = 2
amount = 500
lifetime = 4.5
randomness = 0.18
visibility_aabb = AABB(-100, -100, -100, 200, 200, 200)
transform_align = 2
trail_enabled = true
trail_lifetime = 0.5
process_material = ExtResource("13_0sy3c")
draw_pass_1 = ExtResource("12_qbtqr")
[node name="Target1" type="StaticBody3D" parent="." groups=["targets"]]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0726249, 3.45173, -4.38392)
script = ExtResource("14_luvo8")
[node name="CollisionShape3D" type="CollisionShape3D" parent="Target1"]
shape = SubResource("BoxShape3D_gofwq")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Target1"]
layers = 4
mesh = SubResource("BoxMesh_0cc1r")
skeleton = NodePath("../..")
surface_material_override/0 = SubResource("StandardMaterial3D_m6mak")
[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Target1"]
stream = ExtResource("15_gvfbh")
volume_db = -80.0
autoplay = true
[node name="Target2" type="StaticBody3D" parent="." groups=["targets"]]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.633323, 2.21869, -2.66142)
script = ExtResource("14_luvo8")
[node name="CollisionShape3D" type="CollisionShape3D" parent="Target2"]
shape = SubResource("BoxShape3D_gofwq")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Target2"]
layers = 4
mesh = SubResource("BoxMesh_0cc1r")
skeleton = NodePath("../..")
surface_material_override/0 = SubResource("StandardMaterial3D_sffkp")
[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Target2"]
stream = ExtResource("16_rhkn8")
volume_db = -80.0
autoplay = true
[node name="Target3" type="StaticBody3D" parent="." groups=["targets"]]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.633, 2.219, -2.66146)
script = ExtResource("14_luvo8")
[node name="CollisionShape3D" type="CollisionShape3D" parent="Target3"]
shape = SubResource("BoxShape3D_gofwq")
[node name="MeshInstance3D" type="MeshInstance3D" parent="Target3"]
layers = 4
mesh = SubResource("BoxMesh_ootr5")
skeleton = NodePath("../..")
surface_material_override/0 = SubResource("StandardMaterial3D_o8q0i")
[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Target3"]
stream = ExtResource("17_gyt33")
volume_db = -80.0
autoplay = true
[node name="Manipulator0" parent="." groups=["manipulators"] instance=ExtResource("18_wecvv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.75019, -3.96693)
[node name="VisualAttractorSphere" parent="Manipulator0" instance=ExtResource("19_xjpkb")]
strength = 26.31
attenuation = 4.13335
radius = 3.0
[node name="Manipulator1" parent="." groups=["manipulators"] instance=ExtResource("18_wecvv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0383019, 1.42738, -2.59085)
[node name="VisualAttractorSphere" parent="Manipulator1" instance=ExtResource("19_xjpkb")]
transform = Transform3D(1, 0, 0, 0, 0.707107, -0.707107, 0, 0.707107, 0.707107, 0, 0, 0)
strength = 6.84
attenuation = 3.13249
directionality = 1.0
radius = 1.3
[node name="MeshInstance3D" type="MeshInstance3D" parent="Manipulator1/VisualAttractorSphere"]
transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, -0.11962)
mesh = SubResource("PrismMesh_be80n")
skeleton = NodePath("")
surface_material_override/0 = SubResource("StandardMaterial3D_hyt1m")
[node name="Manipulator2" parent="." groups=["manipulators"] instance=ExtResource("18_wecvv")]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0383019, 4.37845, -5.02046)
[node name="VisualAttractorSphere" parent="Manipulator2" instance=ExtResource("19_xjpkb")]
transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, 0)
strength = 39.61
attenuation = 1.46136
directionality = 1.0
radius = 2.0
[node name="MeshInstance3D" type="MeshInstance3D" parent="Manipulator2/VisualAttractorSphere"]
transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, -0.11962)
mesh = SubResource("PrismMesh_be80n")
skeleton = NodePath("")
surface_material_override/0 = SubResource("StandardMaterial3D_hyt1m")
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
transform = Transform3D(-4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, 0, 1, 0, 3.12527, -4.09949)
mesh = SubResource("CylinderMesh_7qhvg")