diff --git a/override.cfg b/override.cfg index 4cd32b3..0d1998e 100644 --- a/override.cfg +++ b/override.cfg @@ -1,3 +1,3 @@ [xr] -openxr/enabled=true +openxr/enabled=false diff --git a/scenes/ambient_particles.tscn b/scenes/ambient_particles.tscn new file mode 100644 index 0000000..63f69af --- /dev/null +++ b/scenes/ambient_particles.tscn @@ -0,0 +1,48 @@ +[gd_scene load_steps=7 format=3 uid="uid://cibwlfqvmirgb"] + +[ext_resource type="Script" path="res://scenes/ambient_particles.gd" id="1_2vs80"] + +[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="AmbientParticles" type="GPUParticles3D"] +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("1_2vs80") diff --git a/scenes/base_game_scene.gd b/scenes/base_game_scene.gd index 62b8c4b..3289afc 100644 --- a/scenes/base_game_scene.gd +++ b/scenes/base_game_scene.gd @@ -8,10 +8,21 @@ func scene_loaded(user_data = null): super.scene_loaded(user_data) _reset_manipulators() + +var targets: Array[Target] = [] + func _ready(): + if Engine.is_editor_hint(): + return + # for editor testing when scene is directly loaded - if !Engine.is_editor_hint(): - _reset_manipulators() + _reset_manipulators() + + var target_nodes = get_tree().get_nodes_in_group("targets") + for target_node in target_nodes: + if target_node is Target: + targets.append(target_node) + func _reset_manipulators(): # reset the manipulators (the loaded scene has them in the final position) @@ -34,3 +45,39 @@ func _reset_manipulators(): var attractor = manipulator.get_node("VisualAttractorSphere") if attractor: attractor.radius = 0.5 + +# Puzzle completion parameters +@export var completion_threshold := 0.8 # Target occupancy threshold +@export var completion_time := 3.0 # Time all targets must be above threshold + +var _completion_timer := 0.0 +var _puzzle_complete := false + +signal puzzle_completed() + +func _process(delta: float) -> void: + if Engine.is_editor_hint(): + return + + check_puzzle_completion(delta) + +func check_puzzle_completion(delta: float) -> void: + if _puzzle_complete: + return + + # Check if all targets are above threshold + var all_above_threshold = true + for target in targets: + if target._current_occupancy < completion_threshold: + all_above_threshold = false + break + + # Update completion timer + if all_above_threshold: + _completion_timer += delta + if _completion_timer >= completion_time: + _puzzle_complete = true + puzzle_completed.emit() + else: + _completion_timer = 0.0 + \ No newline at end of file diff --git a/scenes/manipulator/manipulator.gd b/scenes/manipulator/manipulator.gd index ed19294..1f6cd43 100644 --- a/scenes/manipulator/manipulator.gd +++ b/scenes/manipulator/manipulator.gd @@ -14,8 +14,8 @@ const MAX_SCALE = 10 const SCALE_SPEED = 1.0 # Add support for is_xr_class on XRTools classes -# I'm not sure why this is needed exactly, but you'll at least -# get console errors wihtout it. +# I'm not sure why this is needed exactly, but you'll +# annoying get console errors without it. func is_xr_class(name : String) -> bool: return name == "XRToolsPickable" diff --git a/scenes/manipulator/manipulator.tscn b/scenes/manipulator/manipulator.tscn index 2dd3030..ce4d551 100644 --- a/scenes/manipulator/manipulator.tscn +++ b/scenes/manipulator/manipulator.tscn @@ -51,9 +51,7 @@ mesh = SubResource("SphereMesh_mou0a") surface_material_override/0 = SubResource("StandardMaterial3D_ljyno") [node name="GrabPointHandLeft" parent="." instance=ExtResource("2_nqt0c")] -visible = true hand_pose = SubResource("Resource_2ttqc") [node name="GrabPointHandRight" parent="." instance=ExtResource("3_luhd1")] -visible = true hand_pose = SubResource("Resource_vtbag") diff --git a/scenes/title_scene/title_scene.VoxelGI_data.res b/scenes/title_scene/title_scene.VoxelGI_data.res index a91aea3..52b3460 100644 Binary files a/scenes/title_scene/title_scene.VoxelGI_data.res and b/scenes/title_scene/title_scene.VoxelGI_data.res differ diff --git a/scenes/title_scene/title_scene.tscn b/scenes/title_scene/title_scene.tscn index bbe2263..0554b52 100644 --- a/scenes/title_scene/title_scene.tscn +++ b/scenes/title_scene/title_scene.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=48 format=3 uid="uid://bd86thqpujh3p"] +[gd_scene load_steps=43 format=3 uid="uid://bd86thqpujh3p"] [ext_resource type="Script" path="res://addons/godot-xr-tools/staging/scene_base.gd" id="1_t86sx"] [ext_resource type="PackedScene" uid="uid://7uc6tf2tvn1k" path="res://scenes/xr_origin_3d.tscn" id="2_xk21l"] @@ -18,7 +18,7 @@ [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"] +[ext_resource type="PackedScene" uid="uid://cibwlfqvmirgb" path="res://scenes/ambient_particles.tscn" id="19_dlo8s"] [sub_resource type="BoxShape3D" id="BoxShape3D_gj4t1"] size = Vector3(100, 100, 100) @@ -26,39 +26,6 @@ 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) @@ -201,18 +168,6 @@ 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) @@ -347,3 +302,5 @@ 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" parent="." instance=ExtResource("19_dlo8s")] diff --git a/scenes/tutorial_scenes/tutorial_1_particle_mat.tres b/scenes/tutorial_scenes/tutorial_1_particle_mat.tres new file mode 100644 index 0000000..235b0a2 --- /dev/null +++ b/scenes/tutorial_scenes/tutorial_1_particle_mat.tres @@ -0,0 +1,23 @@ +[gd_resource type="TubeTrailMesh" load_steps=3 format=3 uid="uid://davtfqjg4wclw"] + +[sub_resource type="Curve" id="Curve_5o75i"] +_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_08mln"] +shading_mode = 2 +vertex_color_use_as_albedo = true +vertex_color_is_srgb = true +emission_enabled = true +emission = Color(1.2, 1.5, 1.2, 1) +emission_energy_multiplier = 2.0 +disable_receive_shadows = true +use_particle_trails = true + +[resource] +material = SubResource("StandardMaterial3D_08mln") +radius = 0.002 +radial_steps = 4 +cap_top = false +cap_bottom = false +curve = SubResource("Curve_5o75i") diff --git a/scenes/tutorial_scenes/tutorial_scene_1.VoxelGI_data.res b/scenes/tutorial_scenes/tutorial_scene_1.VoxelGI_data.res new file mode 100644 index 0000000..519f7f8 Binary files /dev/null and b/scenes/tutorial_scenes/tutorial_scene_1.VoxelGI_data.res differ diff --git a/scenes/tutorial_scenes/tutorial_scene_1.tscn b/scenes/tutorial_scenes/tutorial_scene_1.tscn new file mode 100644 index 0000000..2bfd69b --- /dev/null +++ b/scenes/tutorial_scenes/tutorial_scene_1.tscn @@ -0,0 +1,161 @@ +[gd_scene load_steps=21 format=3 uid="uid://dqbxp72mjmbc"] + +[ext_resource type="PackedScene" uid="uid://1rwj4eq63xgb" path="res://scenes/tutorial_scenes/tutorial_scene_base.tscn" id="1_lkcbi"] +[ext_resource type="VoxelGIData" uid="uid://nuw3xyd4kkpq" path="res://scenes/tutorial_scenes/tutorial_scene_1.VoxelGI_data.res" id="2_4e4av"] +[ext_resource type="PackedScene" uid="uid://bifpsyvpcem3a" path="res://scenes/manipulator/manipulator.tscn" id="3_pgrk8"] +[ext_resource type="PackedScene" uid="uid://ccmx5v2601k8q" path="res://scenes/manipulator/visual_attractor_sphere.tscn" id="4_05xwa"] +[ext_resource type="Script" path="res://scenes/target.gd" id="5_46vbo"] +[ext_resource type="AudioStream" uid="uid://cqb1bo72232vs" path="res://assets/03 highpiano.ogg" id="6_bxnqe"] + +[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_pu2oq"] +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="TextMesh" id="TextMesh_0qq7n"] +text = "Grab The World +To Move +Yourself" +horizontal_alignment = 0 +line_spacing = -5.0 +pixel_size = 0.02 +depth = 0.2 + +[sub_resource type="TextMesh" id="TextMesh_knbyw"] +text = "Grab the Ball +To Move +The Stream" +horizontal_alignment = 0 +line_spacing = -7.0 +pixel_size = 0.02 +depth = 0.2 + +[sub_resource type="TextMesh" id="TextMesh_7pjq2"] +text = "the +stream" +horizontal_alignment = 0 +line_spacing = -7.0 +pixel_size = 0.02 +depth = 0.2 + +[sub_resource type="TextMesh" id="TextMesh_18ch5"] +text = "hit the target +with the stream" +horizontal_alignment = 0 +line_spacing = -7.0 +pixel_size = 0.02 +depth = 0.2 + +[sub_resource type="PrismMesh" id="PrismMesh_f1dje"] +size = Vector3(0.2, 0.2, 0.2) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_vyhi3"] +emission_enabled = true +emission = Color(0.208505, 0.70691, 0.626474, 1) + +[sub_resource type="BoxShape3D" id="BoxShape3D_2pv4i"] + +[sub_resource type="BoxMesh" id="BoxMesh_tp0p7"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_mjtav"] +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 + +[node name="TutorialSceneBase" instance=ExtResource("1_lkcbi")] + +[node name="VoxelGI" parent="." index="4"] +data = ExtResource("2_4e4av") + +[node name="SpotLight3D" parent="." index="8"] +transform = Transform3D(1, 0, 0, 0, 0.719037, 0.694972, 0, -0.694972, 0.719037, 0.346356, 3.88385, 0.821878) + +[node name="GPUParticles3D" parent="." index="10"] +transform = Transform3D(0.514514, 0, 0.857482, 0, 1, 0, -0.857482, 0, 0.514514, -2.29421, 1.523, -2.03293) +process_material = SubResource("ParticleProcessMaterial_pu2oq") + +[node name="GrabTheWorld" type="MeshInstance3D" parent="." index="12"] +transform = Transform3D(0.787333, 0, 0.616528, 0, 1, 0, -0.616528, 0, 0.787333, -2.04386, 0.522766, -1.73643) +mesh = SubResource("TextMesh_0qq7n") + +[node name="GrabTheManipulator" type="MeshInstance3D" parent="." index="13"] +transform = Transform3D(0.80479, 0, -0.593559, 0, 1, 0, 0.593559, 0, 0.80479, 1.2946, 0.483083, -2.45375) +mesh = SubResource("TextMesh_knbyw") + +[node name="TheStream" type="MeshInstance3D" parent="." index="14"] +transform = Transform3D(0.496262, 0, 0.868173, 0, 1, 0, -0.868173, 0, 0.496262, -2.66182, 1.47005, -1.41463) +mesh = SubResource("TextMesh_7pjq2") + +[node name="TheTarget" type="MeshInstance3D" parent="." index="15"] +transform = Transform3D(0.996969, 0, -0.0777979, 0, 1, 0, 0.0777979, 0, 0.996969, 0.117968, 2.73322, -2.97752) +mesh = SubResource("TextMesh_18ch5") + +[node name="Manipulator1" parent="." index="16" groups=["manipulators"] instance=ExtResource("3_pgrk8")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.6837, 1.50178, -2.83406) + +[node name="VisualAttractorSphere" parent="Manipulator1" index="4" instance=ExtResource("4_05xwa")] +transform = Transform3D(-0.707107, -0.5, -0.5, 0, 0.707107, -0.707107, 0.707107, -0.5, -0.5, 0, 0, 0) +strength = 3.0 +attenuation = 0.534888 +directionality = 1.0 +radius = 0.5 + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Manipulator1/VisualAttractorSphere" index="1"] +transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, -0.11962) +mesh = SubResource("PrismMesh_f1dje") +skeleton = NodePath("") +surface_material_override/0 = SubResource("StandardMaterial3D_vyhi3") + +[node name="Target1" type="StaticBody3D" parent="." index="17" groups=["targets"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.91143, 3.59885, -3.13788) +script = ExtResource("5_46vbo") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Target1" index="0"] +shape = SubResource("BoxShape3D_2pv4i") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Target1" index="1"] +layers = 4 +mesh = SubResource("BoxMesh_tp0p7") +skeleton = NodePath("../..") +surface_material_override/0 = SubResource("StandardMaterial3D_mjtav") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Target1" index="2"] +stream = ExtResource("6_bxnqe") +volume_db = -80.0 +autoplay = true diff --git a/scenes/tutorial_scenes/tutorial_scene_2.VoxelGI_data.res b/scenes/tutorial_scenes/tutorial_scene_2.VoxelGI_data.res new file mode 100644 index 0000000..703a13e Binary files /dev/null and b/scenes/tutorial_scenes/tutorial_scene_2.VoxelGI_data.res differ diff --git a/scenes/tutorial_scenes/tutorial_scene_2.tscn b/scenes/tutorial_scenes/tutorial_scene_2.tscn new file mode 100644 index 0000000..4140fb7 --- /dev/null +++ b/scenes/tutorial_scenes/tutorial_scene_2.tscn @@ -0,0 +1,187 @@ +[gd_scene load_steps=22 format=3 uid="uid://wnfi7j3dmjl"] + +[ext_resource type="PackedScene" uid="uid://1rwj4eq63xgb" path="res://scenes/tutorial_scenes/tutorial_scene_base.tscn" id="1_ef0x7"] +[ext_resource type="VoxelGIData" uid="uid://nhfw6m8oc1hi" path="res://scenes/tutorial_scenes/tutorial_scene_2.VoxelGI_data.res" id="2_eyu4w"] +[ext_resource type="PackedScene" uid="uid://bifpsyvpcem3a" path="res://scenes/manipulator/manipulator.tscn" id="3_00eva"] +[ext_resource type="PackedScene" uid="uid://ccmx5v2601k8q" path="res://scenes/manipulator/visual_attractor_sphere.tscn" id="4_5h7mx"] +[ext_resource type="Script" path="res://scenes/target.gd" id="5_nrhx8"] +[ext_resource type="AudioStream" uid="uid://cqb1bo72232vs" path="res://assets/03 highpiano.ogg" id="6_8qjxs"] +[ext_resource type="AudioStream" uid="uid://cv0f1tu5pac60" path="res://assets/02 midpiano.ogg" id="7_bmi33"] + +[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_c7gdv"] +resource_local_to_scene = true +emission_shape = 3 +emission_box_extents = Vector3(0.1, 0.1, 0.1) +spread = 0.0 +initial_velocity_min = 0.3 +initial_velocity_max = 0.3 +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="TextMesh" id="TextMesh_ck5ya"] +text = "Grab With +Both Hands +To Scale +And Rotate" +horizontal_alignment = 0 +line_spacing = -5.0 +pixel_size = 0.02 +depth = 0.2 + +[sub_resource type="TextMesh" id="TextMesh_0e4fw"] +text = "When Holding +The Ball, +Use The Joystick +To Change +Its Size" +horizontal_alignment = 0 +line_spacing = -5.0 +pixel_size = 0.02 +depth = 0.2 + +[sub_resource type="PrismMesh" id="PrismMesh_vebbs"] +size = Vector3(0.2, 0.2, 0.2) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_6o2tn"] +emission_enabled = true +emission = Color(0.208505, 0.70691, 0.626474, 1) + +[sub_resource type="BoxShape3D" id="BoxShape3D_5cvp1"] + +[sub_resource type="BoxMesh" id="BoxMesh_swij7"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_w1uvt"] +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="TextMesh" id="TextMesh_gt0jy"] +text = "the +target" +horizontal_alignment = 0 +line_spacing = -7.0 +pixel_size = 0.02 +depth = 0.2 + +[sub_resource type="TextMesh" id="TextMesh_tfnjp"] +text = "the +2nd +target" +horizontal_alignment = 0 +line_spacing = -7.0 +pixel_size = 0.02 +depth = 0.2 + +[node name="TutorialSceneBase" instance=ExtResource("1_ef0x7")] + +[node name="VoxelGI" parent="." index="4"] +data = ExtResource("2_eyu4w") + +[node name="SpotLight3D" parent="." index="8"] +transform = Transform3D(1, 0, 0, 0, 0.798268, 0.602302, 0, -0.602302, 0.798268, 0, 4.06392, -0.511663) + +[node name="GPUParticles3D" parent="." index="10"] +transform = Transform3D(-3.09086e-08, -0.707107, 0.707107, 1, -4.37114e-08, 0, 3.09086e-08, 0.707107, 0.707107, -0.0848585, 0.312401, -3.05504) +lifetime = 3.0 +process_material = SubResource("ParticleProcessMaterial_c7gdv") + +[node name="GrabTheWorld" type="MeshInstance3D" parent="." index="12"] +transform = Transform3D(0.971367, 0, 0.237584, 0, 1, 0, -0.237584, 0, 0.971367, -3.17345, 0.738311, -2.58001) +mesh = SubResource("TextMesh_ck5ya") +skeleton = NodePath("../VoxelGI") + +[node name="WhenHolding" type="MeshInstance3D" parent="." index="13"] +transform = Transform3D(0.943535, 0, -0.331272, 0, 1, 0, 0.331272, 0, 0.943535, 0.779366, 1.00792, -3.22149) +mesh = SubResource("TextMesh_0e4fw") +skeleton = NodePath("../VoxelGI") + +[node name="Manipulator1" parent="." index="14" groups=["manipulators"] instance=ExtResource("3_00eva")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0327194, 1.08087, -3.20292) + +[node name="VisualAttractorSphere" parent="Manipulator1" index="4" instance=ExtResource("4_5h7mx")] +transform = Transform3D(1, 0, 0, 0, 0.753862, -0.657033, 0, 0.657033, 0.753862, 0, 0, 0) +strength = 3.0 +attenuation = 0.534888 +directionality = 1.0 +radius = 1.5 + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Manipulator1/VisualAttractorSphere" index="1"] +transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 0, -0.11962) +mesh = SubResource("PrismMesh_vebbs") +skeleton = NodePath("") +surface_material_override/0 = SubResource("StandardMaterial3D_6o2tn") + +[node name="Target1" type="StaticBody3D" parent="." index="15" groups=["targets"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.599, -6.182) +script = ExtResource("5_nrhx8") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Target1" index="0"] +shape = SubResource("BoxShape3D_5cvp1") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Target1" index="1"] +layers = 4 +mesh = SubResource("BoxMesh_swij7") +skeleton = NodePath("../..") +surface_material_override/0 = SubResource("StandardMaterial3D_w1uvt") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Target1" index="2"] +stream = ExtResource("6_8qjxs") +volume_db = -80.0 +autoplay = true + +[node name="Target2" type="StaticBody3D" parent="." index="16" groups=["targets"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.85112, -4.45978) +script = ExtResource("5_nrhx8") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Target2" index="0"] +shape = SubResource("BoxShape3D_5cvp1") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="Target2" index="1"] +layers = 4 +mesh = SubResource("BoxMesh_swij7") +skeleton = NodePath("../..") +surface_material_override/0 = SubResource("StandardMaterial3D_w1uvt") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Target2" index="2"] +stream = ExtResource("7_bmi33") +volume_db = -80.0 +autoplay = true + +[node name="TheTarget" type="MeshInstance3D" parent="." index="17"] +transform = Transform3D(0.996969, 0, -0.0777979, 0, 1, 0, 0.0777979, 0, 0.996969, -1.65468, 2.00334, -4.59936) +mesh = SubResource("TextMesh_gt0jy") + +[node name="TheTarget2" type="MeshInstance3D" parent="." index="18"] +transform = Transform3D(0.996969, 0, -0.0777979, 0, 1, 0, 0.0777979, 0, 0.996969, -1.53939, 3.57846, -6.22573) +mesh = SubResource("TextMesh_tfnjp") diff --git a/scenes/tutorial_scenes/tutorial_scene_base.tscn b/scenes/tutorial_scenes/tutorial_scene_base.tscn new file mode 100644 index 0000000..d18e298 --- /dev/null +++ b/scenes/tutorial_scenes/tutorial_scene_base.tscn @@ -0,0 +1,130 @@ +[gd_scene load_steps=20 format=3 uid="uid://1rwj4eq63xgb"] + +[ext_resource type="Script" path="res://scenes/base_game_scene.gd" id="1_lv8qp"] +[ext_resource type="PackedScene" uid="uid://7uc6tf2tvn1k" path="res://scenes/xr_origin_3d.tscn" id="2_pnpvr"] +[ext_resource type="PackedScene" uid="uid://clc5dre31iskm" path="res://addons/godot-xr-tools/xr/start_xr.tscn" id="3_7tbdf"] +[ext_resource type="PackedScene" uid="uid://57q7hhomocdh" path="res://addons/godot-xr-tools/objects/world_grab_area.tscn" id="4_6jer4"] +[ext_resource type="PackedScene" uid="uid://cibwlfqvmirgb" path="res://scenes/ambient_particles.tscn" id="5_l7f6r"] +[ext_resource type="Script" path="res://scenes/performance_settings/voxel_gi_toggle.gd" id="7_r0ih7"] +[ext_resource type="Environment" uid="uid://c1yf8e4qr42hr" path="res://scenes/environment.tres" id="8_8na6t"] +[ext_resource type="PackedScene" uid="uid://rsrnbs08nv1n" path="res://scenes/collisions/proxy_collision_detector.tscn" id="10_e5fuu"] +[ext_resource type="TubeTrailMesh" uid="uid://davtfqjg4wclw" path="res://scenes/tutorial_scenes/tutorial_1_particle_mat.tres" id="10_f6cc6"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_gj4t1"] +size = Vector3(100, 100, 100) + +[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_2hwxq"] +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="TextMesh" id="TextMesh_1u4xn"] +text = "Tutorial" +pixel_size = 0.1 +depth = 0.5 + +[node name="TutorialSceneBase" type="Node3D"] +script = ExtResource("1_lv8qp") + +[node name="XROrigin3D" parent="." instance=ExtResource("2_pnpvr")] + +[node name="StartXR" parent="." instance=ExtResource("3_7tbdf")] + +[node name="WorldGrabArea" parent="." instance=ExtResource("4_6jer4")] +gravity_space_override = 3 +gravity = 0.0 + +[node name="CollisionShape3D" type="CollisionShape3D" parent="WorldGrabArea"] +shape = SubResource("BoxShape3D_gj4t1") + +[node name="AmbientParticles" parent="." instance=ExtResource("5_l7f6r")] + +[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) +script = ExtResource("7_r0ih7") + +[node name="WorldEnvironment" type="WorldEnvironment" parent="."] +environment = ExtResource("8_8na6t") + +[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 +spot_attenuation = 0.1 +spot_angle = 48.3 + +[node name="ProxyCollisionDetector" parent="." instance=ExtResource("10_e5fuu")] +source_particles_paths = Array[NodePath]([NodePath("../GPUParticles3D")]) + +[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_2hwxq") +draw_pass_1 = ExtResource("10_f6cc6") + +[node name="TutorialText" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.07209, -5.05289) +mesh = SubResource("TextMesh_1u4xn") diff --git a/scenes/valentine_scene/valentine_scene.tscn b/scenes/valentine_scene/valentine_scene.tscn index 3d547e8..74b6451 100644 --- a/scenes/valentine_scene/valentine_scene.tscn +++ b/scenes/valentine_scene/valentine_scene.tscn @@ -1,10 +1,9 @@ -[gd_scene load_steps=43 format=3 uid="uid://4hr2m5ibwhpy"] +[gd_scene load_steps=38 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"] @@ -18,44 +17,12 @@ [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://cibwlfqvmirgb" path="res://scenes/ambient_particles.tscn" id="19_ssw3h"] [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) @@ -165,18 +132,6 @@ 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 @@ -340,3 +295,5 @@ 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") + +[node name="AmbientParticles" parent="." instance=ExtResource("19_ssw3h")]