Compare commits
1 commit
master
...
Spirit_Wan
Author | SHA1 | Date | |
---|---|---|---|
7ed06d2a74 |
2
.gitignore
vendored
|
@ -13,5 +13,3 @@ android/
|
|||
.venv/
|
||||
.vscode
|
||||
bin
|
||||
override.cfg
|
||||
addons/godot-git-plugin/win64/~libgit_plugin.windows.editor.x86_64.dll
|
||||
|
|
|
@ -35,6 +35,8 @@ class CopiedCollision extends RefCounted:
|
|||
var collision_shape : CollisionShape3D
|
||||
var org_transform : Transform3D
|
||||
|
||||
@export var position_node : Node3D
|
||||
|
||||
## Pickup enabled property
|
||||
@export var enabled : bool = true
|
||||
|
||||
|
@ -169,7 +171,8 @@ func _process(delta):
|
|||
|
||||
#Apply the public values to trick the movement script
|
||||
grip_value_public = _controller.get_float(pickup_axis_action)
|
||||
|
||||
_grab_area.global_position = position_node.global_position
|
||||
_ranged_area.global_position = position_node.global_position
|
||||
# Handle our grip
|
||||
#var grip_value = grip_value_public
|
||||
var grip_value = _controller.get_float(pickup_axis_action_trigger)
|
||||
|
@ -430,7 +433,8 @@ func _pick_up_object(target: Node3D) -> void:
|
|||
# Pick up our target. Note, target may do instant drop_and_free
|
||||
picked_up_ranged = not _object_in_grab_area.has(target)
|
||||
picked_up_object = target
|
||||
target.pick_up(self)
|
||||
target.pick_up(self,position_node)
|
||||
#target.pick_up()
|
||||
|
||||
# If object picked up then emit signal
|
||||
if is_instance_valid(picked_up_object):
|
||||
|
|
|
@ -17,6 +17,8 @@ extends Node3D
|
|||
## Signal emitted when the hand scale changes
|
||||
signal hand_scale_changed(scale)
|
||||
|
||||
##Wand mesh for it blendshapes
|
||||
@export var wand_mesh : MeshInstance3D
|
||||
|
||||
## Blend tree to use
|
||||
@export var hand_blend_tree : AnimationNodeBlendTree: set = set_hand_blend_tree
|
||||
|
@ -158,6 +160,8 @@ func _physics_process(_delta: float) -> void:
|
|||
var grip : float = _controller.get_float(grip_action)
|
||||
var trigger : float = _controller.get_float(trigger_action)
|
||||
|
||||
#Animate wand opening
|
||||
wand_mesh.set("blend_shapes/Key 1", 1-trigger)
|
||||
# Allow overriding of grip and trigger
|
||||
if _force_grip >= 0.0: grip = _force_grip
|
||||
if _force_trigger >= 0.0: trigger = _force_trigger
|
||||
|
|
|
@ -186,10 +186,11 @@ static func create_lerp(
|
|||
# Create the driver to instantly snap to the primary grab-point.
|
||||
static func create_snap(
|
||||
p_target : Node3D,
|
||||
p_grab : Grab) -> XRToolsGrabDriver:
|
||||
p_grab : Grab,
|
||||
p_pos : Node3D) -> XRToolsGrabDriver:
|
||||
|
||||
print_verbose("%s> snapping to %s" % [p_target.name, p_grab.by.name])
|
||||
|
||||
print("%s> snapping to %s" % [p_target.name, p_grab.by.name])
|
||||
# Construct the driver snapped to the held position
|
||||
var driver := XRToolsGrabDriver.new()
|
||||
driver.name = p_target.name + "_driver"
|
||||
|
@ -198,7 +199,10 @@ static func create_snap(
|
|||
driver.state = GrabState.SNAP
|
||||
driver.target = p_target
|
||||
driver.primary = p_grab
|
||||
driver.global_transform = p_grab.by.global_transform * p_grab.transform.inverse()
|
||||
#driver.global_transform = p_pos.global_transform * p_grab.transform.inverse()
|
||||
driver.global_transform = p_grab.by.global_transform * p_pos.transform.inverse()
|
||||
#driver.global_transform = p_pos.global_transform #p_grab.by.global_transform * p_pos.transform.inverse()
|
||||
#driver.global_transform = Transform3D.IDENTITY
|
||||
|
||||
# Snapped to grab-point so report arrived
|
||||
p_grab.set_arrived()
|
||||
|
@ -206,8 +210,13 @@ static func create_snap(
|
|||
# Add the driver as a neighbor of the target as RemoteTransform3D nodes
|
||||
# cannot be descendands of the targets they drive.
|
||||
p_target.get_parent().add_child(driver)
|
||||
#p_target.position = Vector3(1,1,1)
|
||||
#driver.position = Vector3(1,1,1)
|
||||
#p_target.global_position = Vector3.ZERO
|
||||
driver.remote_path = driver.get_path_to(p_target)
|
||||
|
||||
#driver.transform = p_pos.transform
|
||||
|
||||
driver._update_weight()
|
||||
|
||||
# Return the driver
|
||||
|
|
|
@ -256,7 +256,7 @@ func drop_and_free():
|
|||
|
||||
|
||||
# Called when this object is picked up
|
||||
func pick_up(by: Node3D) -> void:
|
||||
func pick_up(by : Node3D, other_by : Node3D) -> void:
|
||||
# Skip if not enabled
|
||||
if not enabled:
|
||||
return
|
||||
|
@ -316,10 +316,11 @@ func pick_up(by: Node3D) -> void:
|
|||
_grab_driver = XRToolsGrabDriver.create_lerp(self, grab, ranged_grab_speed)
|
||||
else:
|
||||
var grab := Grab.new(grabber, self, by_grab_point, false)
|
||||
_grab_driver = XRToolsGrabDriver.create_snap(self, grab)
|
||||
_grab_driver = XRToolsGrabDriver.create_snap(self, grab,other_by)
|
||||
else:
|
||||
var grab := Grab.new(grabber, self, by_grab_point, true)
|
||||
_grab_driver = XRToolsGrabDriver.create_snap(self, grab)
|
||||
#var sal := Grab.new()
|
||||
_grab_driver = XRToolsGrabDriver.create_snap(self, grab,other_by)
|
||||
|
||||
# Report picked up and grabbed
|
||||
picked_up.emit(self)
|
||||
|
|
|
@ -40,7 +40,7 @@ func request_highlight(_from, _on) -> void:
|
|||
pass
|
||||
|
||||
# Called by XRToolsFunctionPickup when this is picked up by a controller
|
||||
func pick_up(by: Node3D) -> void:
|
||||
func pick_up(by: Node3D, another: Node3D) -> void:
|
||||
# Get the ID to save the grab handle under
|
||||
var id = by.get_instance_id()
|
||||
|
||||
|
|
19
assets/02 midpiano.ogg.import
Normal file
|
@ -0,0 +1,19 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://cv0f1tu5pac60"
|
||||
path="res://.godot/imported/02 midpiano.ogg-f0bff299af52583bc6ba27e91b4b8750.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/02 midpiano.ogg"
|
||||
dest_files=["res://.godot/imported/02 midpiano.ogg-f0bff299af52583bc6ba27e91b4b8750.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0.0
|
||||
bpm=140.0
|
||||
beat_count=0
|
||||
bar_beats=4
|
19
assets/03 highpiano.ogg.import
Normal file
|
@ -0,0 +1,19 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://cqb1bo72232vs"
|
||||
path="res://.godot/imported/03 highpiano.ogg-206dd132bbe2dcd683287c1b7048c90c.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/03 highpiano.ogg"
|
||||
dest_files=["res://.godot/imported/03 highpiano.ogg-206dd132bbe2dcd683287c1b7048c90c.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0.0
|
||||
bpm=140.0
|
||||
beat_count=0
|
||||
bar_beats=4
|
19
assets/04 bass.ogg.import
Normal file
|
@ -0,0 +1,19 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://dnwh2iqwi86ku"
|
||||
path="res://.godot/imported/04 bass.ogg-a522f0b84ade86fc91d4d06447ccaf6c.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/04 bass.ogg"
|
||||
dest_files=["res://.godot/imported/04 bass.ogg-a522f0b84ade86fc91d4d06447ccaf6c.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0.0
|
||||
bpm=140.0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -4,12 +4,12 @@ importer="scene"
|
|||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://c20kawop2lrv"
|
||||
path="res://.godot/imported/Arcane Source 2.glb-be85b62ae2427891994d642c80ef4fe9.scn"
|
||||
path="res://.godot/imported/Arcane Source 2.glb-f6a7fde9d1238c67588c278f530e1b1c.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Arcane Source 2.glb"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2.glb-be85b62ae2427891994d642c80ef4fe9.scn"]
|
||||
source_file="res://assets/Arcane Source 2.glb"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2.glb-f6a7fde9d1238c67588c278f530e1b1c.scn"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
|
@ -3,8 +3,8 @@
|
|||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bfqhksl13a25e"
|
||||
path.s3tc="res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-aa43b86cff20cc06be54dfd1f5f0a91f.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-aa43b86cff20cc06be54dfd1f5f0a91f.etc2.ctex"
|
||||
path.s3tc="res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-9853b52be85f48254dda6933910ea150.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-9853b52be85f48254dda6933910ea150.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
|
@ -15,8 +15,8 @@ generator_parameters={
|
|||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Materials/Arcane Source 2_CAUTION POSTER.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-aa43b86cff20cc06be54dfd1f5f0a91f.s3tc.ctex", "res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-aa43b86cff20cc06be54dfd1f5f0a91f.etc2.ctex"]
|
||||
source_file="res://assets/Arcane Source 2_CAUTION POSTER.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-9853b52be85f48254dda6933910ea150.s3tc.ctex", "res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-9853b52be85f48254dda6933910ea150.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
|
@ -3,8 +3,8 @@
|
|||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ne443mm67bls"
|
||||
path.s3tc="res://.godot/imported/Arcane Source 2_Crystal.png-7a8791dd65f97a5de462bb7928e11bd7.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arcane Source 2_Crystal.png-7a8791dd65f97a5de462bb7928e11bd7.etc2.ctex"
|
||||
path.s3tc="res://.godot/imported/Arcane Source 2_Crystal.png-a983e350b642f76a540a3c2e3d6c3ed1.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arcane Source 2_Crystal.png-a983e350b642f76a540a3c2e3d6c3ed1.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
|
@ -15,8 +15,8 @@ generator_parameters={
|
|||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Materials/Arcane Source 2_Crystal.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_Crystal.png-7a8791dd65f97a5de462bb7928e11bd7.s3tc.ctex", "res://.godot/imported/Arcane Source 2_Crystal.png-7a8791dd65f97a5de462bb7928e11bd7.etc2.ctex"]
|
||||
source_file="res://assets/Arcane Source 2_Crystal.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_Crystal.png-a983e350b642f76a540a3c2e3d6c3ed1.s3tc.ctex", "res://.godot/imported/Arcane Source 2_Crystal.png-a983e350b642f76a540a3c2e3d6c3ed1.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
@ -3,7 +3,7 @@
|
|||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://wra1moc3143u"
|
||||
path="res://.godot/imported/Arcane Source 2_Image.png-08d04b4cc3caeaf17919702f4f21219c.ctex"
|
||||
path="res://.godot/imported/Arcane Source 2_Image.png-2d519ab22a9cee886cf4140b42ce8130.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
@ -13,8 +13,8 @@ generator_parameters={
|
|||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Materials/Arcane Source 2_Image.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_Image.png-08d04b4cc3caeaf17919702f4f21219c.ctex"]
|
||||
source_file="res://assets/Arcane Source 2_Image.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_Image.png-2d519ab22a9cee886cf4140b42ce8130.ctex"]
|
||||
|
||||
[params]
|
||||
|
|
@ -6,4 +6,4 @@ cull_mode = 2
|
|||
albedo_color = Color(0.906332, 0.836398, 0.446766, 1)
|
||||
roughness = 0.5
|
||||
emission_enabled = true
|
||||
emission = Color(1.8, 1.6, 0, 1)
|
||||
emission = Color(0.741793, 0.548567, 0.129865, 1)
|
13
assets/Glass.001.tres
Normal file
|
@ -0,0 +1,13 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://c3waeqeii0krh"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Glass.001"
|
||||
transparency = 4
|
||||
cull_mode = 2
|
||||
albedo_color = Color(1, 1, 1, 0.144)
|
||||
metallic = 1.0
|
||||
metallic_specular = 0.55
|
||||
roughness = 0.33
|
||||
clearcoat_enabled = true
|
||||
anisotropy = 0.7
|
||||
refraction_scale = 0.37
|
|
@ -1,7 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://cnwftrvvfqkqp"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Emission"
|
||||
albedo_color = Color(0, 0, 0, 1)
|
||||
roughness = 0.5
|
||||
emission = Color(0.741793, 0.548567, 0.129865, 1)
|
|
@ -1,7 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://dyqprt5gwngi4"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Emission"
|
||||
albedo_color = Color(0.224536, 0.308107, 0.580711, 1)
|
||||
roughness = 0.5
|
||||
emission = Color(0.741793, 0.548567, 0.129865, 1)
|
|
@ -1,7 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://bdefowx357g78"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Emission"
|
||||
albedo_color = Color(0.351259, 0.324864, 0.294196, 1)
|
||||
roughness = 0.5
|
||||
emission = Color(0.741793, 0.548567, 0.129865, 1)
|
|
@ -1,9 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://bro45xdnhcxst"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Emission"
|
||||
cull_mode = 2
|
||||
albedo_color = Color(0, 0.835294, 0.447059, 1)
|
||||
roughness = 0.5
|
||||
emission_enabled = true
|
||||
emission = Color(0.156863, 0.929412, 0.407843, 1)
|
|
@ -1,9 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://cqoutm8rt5ai2"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Emission"
|
||||
cull_mode = 2
|
||||
albedo_color = Color(0.984314, 0, 0, 1)
|
||||
roughness = 0.5
|
||||
emission_enabled = true
|
||||
emission = Color(0.996946, 3.39322e-06, 1.92523e-07, 1)
|
|
@ -1,11 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://c3waeqeii0krh"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Glass.001"
|
||||
transparency = 1
|
||||
cull_mode = 2
|
||||
albedo_color = Color(1, 1, 1, 0.148)
|
||||
metallic = 1.0
|
||||
metallic_specular = 1.0
|
||||
rim_enabled = true
|
||||
rim_tint = 0.55
|
|
@ -1,6 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://cm48kdbb2xphc"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Emission"
|
||||
shading_mode = 0
|
||||
albedo_color = Color(0.452566, 0.377498, 0.362154, 1)
|
|
@ -1,9 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://6w5en0784o0v"]
|
||||
|
||||
[resource]
|
||||
resource_name = "Emission"
|
||||
albedo_color = Color(0.839924, 0.818519, 0.793853, 1)
|
||||
metallic = 0.66
|
||||
metallic_specular = 0.38
|
||||
roughness = 0.5
|
||||
emission = Color(0.741793, 0.548567, 0.129865, 1)
|
Before Width: | Height: | Size: 57 KiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://r4804okyswb7"
|
||||
path.s3tc="res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-da1e03614f38253935b35a22f322ee96.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-da1e03614f38253935b35a22f322ee96.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "ff0c8b64cdfd8364eccff6a0f230ccc5"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Arcane Source 2_CAUTION POSTER.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-da1e03614f38253935b35a22f322ee96.s3tc.ctex", "res://.godot/imported/Arcane Source 2_CAUTION POSTER.png-da1e03614f38253935b35a22f322ee96.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
Before Width: | Height: | Size: 1.7 MiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ckin837hrnf8k"
|
||||
path.s3tc="res://.godot/imported/Arcane Source 2_Crystal.png-96484163ac4c14e0b8ee73ee4a78dfc3.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arcane Source 2_Crystal.png-96484163ac4c14e0b8ee73ee4a78dfc3.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "0814fbf90837c30521be18ddc1562b3b"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Arcane Source 2_Crystal.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_Crystal.png-96484163ac4c14e0b8ee73ee4a78dfc3.s3tc.ctex", "res://.godot/imported/Arcane Source 2_Crystal.png-96484163ac4c14e0b8ee73ee4a78dfc3.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
Before Width: | Height: | Size: 1.2 MiB |
|
@ -1,37 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://6hmqi48jtrdy"
|
||||
path="res://.godot/imported/Arcane Source 2_Image.png-278a6a8ff40be89dbc15d1d3a0100121.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "f3283d06ee27f6a55f5352dc140cb1ae"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Arcane Source 2_Image.png"
|
||||
dest_files=["res://.godot/imported/Arcane Source 2_Image.png-278a6a8ff40be89dbc15d1d3a0100121.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://bjpm8xt3axvmi"
|
||||
path="res://.godot/imported/Arm End.glb-f0a6f245e10e6c36489303379e2ec397.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Arm End.glb"
|
||||
dest_files=["res://.godot/imported/Arm End.glb-f0a6f245e10e6c36489303379e2ec397.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=1
|
||||
gltf/embedded_image_handling=1
|
Before Width: | Height: | Size: 350 KiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bbqxeducdalmw"
|
||||
path.s3tc="res://.godot/imported/Arm End_Metal061A_1K-JPG_Color.jpg-8bec34f12931a0352a8ad3da93dcd2df.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arm End_Metal061A_1K-JPG_Color.jpg-8bec34f12931a0352a8ad3da93dcd2df.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "f8d3069a6110ae8a4501aee7c9285a69"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Arm End_Metal061A_1K-JPG_Color.jpg"
|
||||
dest_files=["res://.godot/imported/Arm End_Metal061A_1K-JPG_Color.jpg-8bec34f12931a0352a8ad3da93dcd2df.s3tc.ctex", "res://.godot/imported/Arm End_Metal061A_1K-JPG_Color.jpg-8bec34f12931a0352a8ad3da93dcd2df.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
Before Width: | Height: | Size: 350 KiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c84c51kp4yx6b"
|
||||
path.s3tc="res://.godot/imported/Arm_Metal061A_1K-JPG_Color.jpg-e105d40777f0425b1a796c81363fee5c.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Arm_Metal061A_1K-JPG_Color.jpg-e105d40777f0425b1a796c81363fee5c.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "f8d3069a6110ae8a4501aee7c9285a69"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Arm_Metal061A_1K-JPG_Color.jpg"
|
||||
dest_files=["res://.godot/imported/Arm_Metal061A_1K-JPG_Color.jpg-e105d40777f0425b1a796c81363fee5c.s3tc.ctex", "res://.godot/imported/Arm_Metal061A_1K-JPG_Color.jpg-e105d40777f0425b1a796c81363fee5c.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://b5bxxscp4i2l6"
|
||||
path="res://.godot/imported/Door.glb-2f102e9d82d5303e3976db8a860a0178.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Door.glb"
|
||||
dest_files=["res://.godot/imported/Door.glb-2f102e9d82d5303e3976db8a860a0178.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=1
|
||||
gltf/embedded_image_handling=1
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://bch40cmi2hgkl"
|
||||
path="res://.godot/imported/Pipes.glb-3aa4ef49ebddf4865952aaa21e1c6967.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Pipes.glb"
|
||||
dest_files=["res://.godot/imported/Pipes.glb-3aa4ef49ebddf4865952aaa21e1c6967.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=1
|
||||
gltf/embedded_image_handling=1
|
Before Width: | Height: | Size: 9.9 MiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c6chhj2jhli1w"
|
||||
path.s3tc="res://.godot/imported/Pipes_Pipe_Base_color.png-02f7fcf1191228500a762c55a7ac3375.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Pipes_Pipe_Base_color.png-02f7fcf1191228500a762c55a7ac3375.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "a784466a3cc863cd014bff7a9660c57a"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Pipes_Pipe_Base_color.png"
|
||||
dest_files=["res://.godot/imported/Pipes_Pipe_Base_color.png-02f7fcf1191228500a762c55a7ac3375.s3tc.ctex", "res://.godot/imported/Pipes_Pipe_Base_color.png-02f7fcf1191228500a762c55a7ac3375.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://cimd7p5gfuicp"
|
||||
path="res://.godot/imported/Table.glb-6b8570842c93ac915e180d8cf51fca34.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Table.glb"
|
||||
dest_files=["res://.godot/imported/Table.glb-6b8570842c93ac915e180d8cf51fca34.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=1
|
||||
gltf/embedded_image_handling=1
|
Before Width: | Height: | Size: 382 KiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://8h6elgpac6j1"
|
||||
path.s3tc="res://.godot/imported/Table_Plastic013A_1K-JPG_Color.jpg-4811202676817ec059861e812cf4b4ba.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Table_Plastic013A_1K-JPG_Color.jpg-4811202676817ec059861e812cf4b4ba.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "c18682b106d8757654ca2f653244dc68"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Table_Plastic013A_1K-JPG_Color.jpg"
|
||||
dest_files=["res://.godot/imported/Table_Plastic013A_1K-JPG_Color.jpg-4811202676817ec059861e812cf4b4ba.s3tc.ctex", "res://.godot/imported/Table_Plastic013A_1K-JPG_Color.jpg-4811202676817ec059861e812cf4b4ba.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
Before Width: | Height: | Size: 114 KiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d4e0uph0gd1aq"
|
||||
path.s3tc="res://.godot/imported/Table_Porcelain003_1K-JPG_Color.jpg-f8aa90953a70a9fa6138d1416d97b710.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Table_Porcelain003_1K-JPG_Color.jpg-f8aa90953a70a9fa6138d1416d97b710.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "1e0a67f177182d5f06b942194512ed96"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Table_Porcelain003_1K-JPG_Color.jpg"
|
||||
dest_files=["res://.godot/imported/Table_Porcelain003_1K-JPG_Color.jpg-f8aa90953a70a9fa6138d1416d97b710.s3tc.ctex", "res://.godot/imported/Table_Porcelain003_1K-JPG_Color.jpg-f8aa90953a70a9fa6138d1416d97b710.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
Before Width: | Height: | Size: 331 KiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dq1wb1tvmd6a2"
|
||||
path.s3tc="res://.godot/imported/Table_Porcelain003_1K-JPG_NormalGL.jpg-d7b76b40a23b89993c535aafcc983637.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Table_Porcelain003_1K-JPG_NormalGL.jpg-d7b76b40a23b89993c535aafcc983637.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "b71f63705063d9e61ef2c7bad8fc58a4"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Table_Porcelain003_1K-JPG_NormalGL.jpg"
|
||||
dest_files=["res://.godot/imported/Table_Porcelain003_1K-JPG_NormalGL.jpg-d7b76b40a23b89993c535aafcc983637.s3tc.ctex", "res://.godot/imported/Table_Porcelain003_1K-JPG_NormalGL.jpg-d7b76b40a23b89993c535aafcc983637.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=1
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=1
|
||||
roughness/src_normal="res://assets/Models/Table_Porcelain003_1K-JPG_NormalGL.jpg"
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
|
@ -1,36 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="scene"
|
||||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://ddq7ngl6crqhb"
|
||||
path="res://.godot/imported/Tank.glb-1be7070b290b0d75e3d19b02651b1a95.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Tank.glb"
|
||||
dest_files=["res://.godot/imported/Tank.glb-1be7070b290b0d75e3d19b02651b1a95.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
nodes/root_type=""
|
||||
nodes/root_name=""
|
||||
nodes/apply_root_scale=true
|
||||
nodes/root_scale=1.0
|
||||
nodes/import_as_skeleton_bones=false
|
||||
meshes/ensure_tangents=true
|
||||
meshes/generate_lods=true
|
||||
meshes/create_shadow_meshes=true
|
||||
meshes/light_baking=1
|
||||
meshes/lightmap_texel_size=0.2
|
||||
meshes/force_disable_compression=false
|
||||
skins/use_named_skins=true
|
||||
animation/import=true
|
||||
animation/fps=30
|
||||
animation/trimming=false
|
||||
animation/remove_immutable_tracks=true
|
||||
animation/import_rest_as_RESET=false
|
||||
import_script/path=""
|
||||
_subresources={}
|
||||
gltf/naming_version=1
|
||||
gltf/embedded_image_handling=1
|
Before Width: | Height: | Size: 9.9 MiB |
|
@ -1,39 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://8iyntfti7o37"
|
||||
path.s3tc="res://.godot/imported/Tank_Pipe_Base_color.png-1626a34515d2d5be2205c0ae7c84258b.s3tc.ctex"
|
||||
path.etc2="res://.godot/imported/Tank_Pipe_Base_color.png-1626a34515d2d5be2205c0ae7c84258b.etc2.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc", "etc2_astc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "a784466a3cc863cd014bff7a9660c57a"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Tank_Pipe_Base_color.png"
|
||||
dest_files=["res://.godot/imported/Tank_Pipe_Base_color.png-1626a34515d2d5be2205c0ae7c84258b.s3tc.ctex", "res://.godot/imported/Tank_Pipe_Base_color.png-1626a34515d2d5be2205c0ae7c84258b.etc2.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://cv0f1tu5pac60"
|
||||
path="res://.godot/imported/02 midpiano.ogg-d65c7337c659a21e35448d4f6082089b.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Sounds/02 midpiano.ogg"
|
||||
dest_files=["res://.godot/imported/02 midpiano.ogg-d65c7337c659a21e35448d4f6082089b.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0.0
|
||||
bpm=140.0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://cqb1bo72232vs"
|
||||
path="res://.godot/imported/03 highpiano.ogg-2345e7a2d79c85721ba200948ede097f.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Sounds/03 highpiano.ogg"
|
||||
dest_files=["res://.godot/imported/03 highpiano.ogg-2345e7a2d79c85721ba200948ede097f.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0.0
|
||||
bpm=140.0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://dnwh2iqwi86ku"
|
||||
path="res://.godot/imported/04 bass.ogg-9f061a55e3e2db2c32e561bb5f9f6190.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Sounds/04 bass.ogg"
|
||||
dest_files=["res://.godot/imported/04 bass.ogg-9f061a55e3e2db2c32e561bb5f9f6190.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0.0
|
||||
bpm=140.0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -4,12 +4,12 @@ importer="scene"
|
|||
importer_version=1
|
||||
type="PackedScene"
|
||||
uid="uid://ewhlayr70v2l"
|
||||
path="res://.godot/imported/Star bulb.glb-c83a05c94a830f58f3d8631428891a9d.scn"
|
||||
path="res://.godot/imported/Star bulb.glb-364e14e69bd4e37d50dd1a257a0531bd.scn"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/Models/Star bulb.glb"
|
||||
dest_files=["res://.godot/imported/Star bulb.glb-c83a05c94a830f58f3d8631428891a9d.scn"]
|
||||
source_file="res://assets/Star bulb.glb"
|
||||
dest_files=["res://.godot/imported/Star bulb.glb-364e14e69bd4e37d50dd1a257a0531bd.scn"]
|
||||
|
||||
[params]
|
||||
|
||||
|
@ -1836,11 +1836,11 @@ _subresources={
|
|||
"materials": {
|
||||
"Emission": {
|
||||
"use_external/enabled": true,
|
||||
"use_external/path": "res://assets/Materials/Emission.tres"
|
||||
"use_external/path": "res://assets/Emission.tres"
|
||||
},
|
||||
"Glass.001": {
|
||||
"use_external/enabled": true,
|
||||
"use_external/path": "res://assets/Materials/Glass.001.tres"
|
||||
"use_external/path": "res://assets/Glass.001.tres"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,44 +0,0 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://c5fqi1imv6y3k"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://da1x5taouke7c" path="res://assets/Models/Arm.glb" id="1_3tf7j"]
|
||||
[ext_resource type="Material" uid="uid://bdefowx357g78" path="res://assets/Materials/Dark Gray.tres" id="2_rhbyi"]
|
||||
[ext_resource type="Material" uid="uid://6w5en0784o0v" path="res://assets/Materials/Silver Grey.tres" id="3_264p4"]
|
||||
[ext_resource type="PackedScene" uid="uid://bjpm8xt3axvmi" path="res://assets/Models/Arm End.glb" id="4_xh8m5"]
|
||||
[ext_resource type="Material" uid="uid://c3waeqeii0krh" path="res://assets/Materials/Glass.001.tres" id="5_3uqos"]
|
||||
[ext_resource type="Material" uid="uid://ci8s6gnyvf7s8" path="res://assets/Materials/Emission.tres" id="6_mojj4"]
|
||||
|
||||
[node name="Arm" instance=ExtResource("1_3tf7j")]
|
||||
|
||||
[node name="Arm Base" parent="." index="0"]
|
||||
transform = Transform3D(1.14559, 0, 0, 0, -1.14559, 4.46108e-07, 0, -4.46108e-07, -1.14559, 0, 0, 0)
|
||||
surface_material_override/0 = ExtResource("2_rhbyi")
|
||||
surface_material_override/1 = ExtResource("3_264p4")
|
||||
surface_material_override/2 = ExtResource("2_rhbyi")
|
||||
|
||||
[node name="Arm J1" parent="Arm Base" index="0"]
|
||||
surface_material_override/0 = ExtResource("2_rhbyi")
|
||||
surface_material_override/1 = ExtResource("3_264p4")
|
||||
|
||||
[node name="Arm J2" parent="Arm Base/Arm J1" index="0"]
|
||||
surface_material_override/0 = ExtResource("2_rhbyi")
|
||||
surface_material_override/1 = ExtResource("3_264p4")
|
||||
|
||||
[node name="Arm End2" parent="Arm Base/Arm J1/Arm J2" index="0" instance=ExtResource("4_xh8m5")]
|
||||
transform = Transform3D(-0.872914, -3.39925e-07, -1.32372e-13, -3.39925e-07, 0.872914, 3.39925e-07, -9.77914e-21, 3.39925e-07, -0.872914, -0.366903, 1.33943, -0.00649305)
|
||||
|
||||
[node name="Arm End" parent="Arm Base/Arm J1/Arm J2/Arm End2" index="0"]
|
||||
surface_material_override/0 = ExtResource("2_rhbyi")
|
||||
surface_material_override/1 = ExtResource("3_264p4")
|
||||
surface_material_override/2 = ExtResource("5_3uqos")
|
||||
|
||||
[node name="Star" parent="Arm Base/Arm J1/Arm J2/Arm End2/Arm End" index="0"]
|
||||
transform = Transform3D(1, -1.94152e-13, 4.13264e-07, 1.94152e-13, 1, 2.71839e-13, -4.13264e-07, -2.71839e-13, 1, 0, 0, 0)
|
||||
surface_material_override/0 = ExtResource("6_mojj4")
|
||||
|
||||
[node name="Star_001" parent="Arm Base/Arm J1/Arm J2/Arm End2/Arm End" index="1"]
|
||||
surface_material_override/0 = ExtResource("6_mojj4")
|
||||
|
||||
[node name="Star_002" parent="Arm Base/Arm J1/Arm J2/Arm End2/Arm End" index="2"]
|
||||
surface_material_override/0 = ExtResource("6_mojj4")
|
||||
|
||||
[editable path="Arm Base/Arm J1/Arm J2/Arm End2"]
|
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://iquu0ttk5ib1"
|
||||
path="res://.godot/imported/boombap.ogg-87f100dad48530603cd8a71c6b152bfc.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/boombap.ogg"
|
||||
dest_files=["res://.godot/imported/boombap.ogg-87f100dad48530603cd8a71c6b152bfc.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0.0
|
||||
bpm=140.0
|
||||
beat_count=0
|
||||
bar_beats=4
|
BIN
assets/crash.ogg
|
@ -1,19 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="oggvorbisstr"
|
||||
type="AudioStreamOggVorbis"
|
||||
uid="uid://chh3mqdtd3nw4"
|
||||
path="res://.godot/imported/crash.ogg-b1191c6b92c1b51c76cfcb881e83d310.oggvorbisstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://assets/crash.ogg"
|
||||
dest_files=["res://.godot/imported/crash.ogg-b1191c6b92c1b51c76cfcb881e83d310.oggvorbisstr"]
|
||||
|
||||
[params]
|
||||
|
||||
loop=false
|
||||
loop_offset=0
|
||||
bpm=0
|
||||
beat_count=0
|
||||
bar_beats=4
|
|
@ -1,17 +0,0 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://drupxpigi5gir"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://b5bxxscp4i2l6" path="res://assets/Models/Door.glb" id="1_g5a8x"]
|
||||
[ext_resource type="Material" uid="uid://cnwftrvvfqkqp" path="res://assets/Materials/Black.tres" id="2_nwt2g"]
|
||||
[ext_resource type="Material" uid="uid://6w5en0784o0v" path="res://assets/Materials/Silver Grey.tres" id="3_4r2pm"]
|
||||
[ext_resource type="Material" uid="uid://dyqprt5gwngi4" path="res://assets/Materials/Blue Gray.tres" id="4_qqh0a"]
|
||||
[ext_resource type="Material" uid="uid://cqoutm8rt5ai2" path="res://assets/Materials/Emission Red.tres" id="5_rgw6y"]
|
||||
[ext_resource type="Material" uid="uid://bro45xdnhcxst" path="res://assets/Materials/Emission Green.tres" id="6_vj42a"]
|
||||
|
||||
[node name="Door2" instance=ExtResource("1_g5a8x")]
|
||||
|
||||
[node name="Door" parent="." index="0"]
|
||||
surface_material_override/0 = ExtResource("2_nwt2g")
|
||||
surface_material_override/1 = ExtResource("3_4r2pm")
|
||||
surface_material_override/2 = ExtResource("4_qqh0a")
|
||||
surface_material_override/3 = ExtResource("5_rgw6y")
|
||||
surface_material_override/4 = ExtResource("6_vj42a")
|
|
@ -1,32 +0,0 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://cp2i64bioqppu"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://bqvydunp5h36y" path="res://assets/Models/Love Potion.glb" id="1_fscfm"]
|
||||
[ext_resource type="Material" uid="uid://c3waeqeii0krh" path="res://assets/Materials/Glass.001.tres" id="2_3vk3m"]
|
||||
[ext_resource type="Material" uid="uid://cm48kdbb2xphc" path="res://assets/Materials/Liquid Gray.tres" id="3_p3117"]
|
||||
[ext_resource type="Material" uid="uid://bdefowx357g78" path="res://assets/Materials/Dark Gray.tres" id="4_4vdxt"]
|
||||
[ext_resource type="Material" uid="uid://cqoutm8rt5ai2" path="res://assets/Materials/Emission Red.tres" id="5_e8elj"]
|
||||
|
||||
[node name="Love Potion" instance=ExtResource("1_fscfm")]
|
||||
|
||||
[node name="Flask" parent="." index="0"]
|
||||
surface_material_override/0 = ExtResource("2_3vk3m")
|
||||
surface_material_override/1 = ExtResource("3_p3117")
|
||||
surface_material_override/2 = ExtResource("4_4vdxt")
|
||||
|
||||
[node name="Heart" parent="Flask" index="0"]
|
||||
surface_material_override/0 = ExtResource("5_e8elj")
|
||||
|
||||
[node name="Star" parent="Flask" index="1"]
|
||||
surface_material_override/0 = ExtResource("5_e8elj")
|
||||
|
||||
[node name="Star_001" parent="Flask" index="2"]
|
||||
transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0.116744, 0.104763, 0)
|
||||
surface_material_override/0 = ExtResource("5_e8elj")
|
||||
|
||||
[node name="Star_002" parent="Flask" index="3"]
|
||||
transform = Transform3D(-1, 0, -3.89414e-07, 0, 1, 0, 3.89414e-07, 0, -1, 0, 0.104763, -0.116744)
|
||||
surface_material_override/0 = ExtResource("5_e8elj")
|
||||
|
||||
[node name="Star_003" parent="Flask" index="4"]
|
||||
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -0.116744, 0.104763, 0)
|
||||
surface_material_override/0 = ExtResource("5_e8elj")
|
|
@ -1,21 +0,0 @@
|
|||
extends Node3D
|
||||
|
||||
|
||||
var material: StandardMaterial3D
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
var mat = $"Flask".mesh.surface_get_material(1)
|
||||
material = mat.duplicate()
|
||||
$"Flask".mesh.surface_set_material(1, material)
|
||||
$"Flask/Heart".mesh.surface_set_material(0, material)
|
||||
$"Flask/Star".mesh.surface_set_material(0, material)
|
||||
$"Flask/Star_001".mesh.surface_set_material(0, material)
|
||||
$"Flask/Star_002".mesh.surface_set_material(0, material)
|
||||
$"Flask/Star_003".mesh.surface_set_material(0, material)
|
||||
|
||||
$AnimationPlayer.play("HeartAction")
|
||||
|
||||
func _on_target_1_occupancy_changed(value: float) -> void:
|
||||
material.emission_energy_multiplier = value * 10
|
||||
$AnimationPlayer.speed_scale = value
|
|
@ -1,11 +1,5 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://bgh4fmqrhb0cs"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://ewhlayr70v2l" path="res://assets/Models/Star bulb.glb" id="1_onaud"]
|
||||
[ext_resource type="PackedScene" uid="uid://ewhlayr70v2l" path="res://assets/Star bulb.glb" id="1_onaud"]
|
||||
|
||||
[node name="Star bulb" instance=ExtResource("1_onaud")]
|
||||
|
||||
[node name="Star Bulb" parent="." index="0"]
|
||||
layers = 4
|
||||
|
||||
[node name="Star" parent="Star Bulb" index="0"]
|
||||
layers = 4
|
||||
|
|
|
@ -5,18 +5,10 @@ var material: StandardMaterial3D
|
|||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
# Duplicate meshes and materials
|
||||
var star_bulb = $"Star Bulb"
|
||||
var star = $"Star Bulb/Star"
|
||||
|
||||
star_bulb.mesh = star_bulb.mesh.duplicate()
|
||||
star.mesh = star.mesh.duplicate()
|
||||
|
||||
var mat = star_bulb.mesh.surface_get_material(1)
|
||||
var mat = $"Star Bulb".mesh.surface_get_material(1)
|
||||
material = mat.duplicate()
|
||||
star_bulb.mesh.surface_set_material(1, material)
|
||||
star.mesh.surface_set_material(0, material)
|
||||
|
||||
$"Star Bulb".mesh.surface_set_material(1, material)
|
||||
$"Star Bulb/Star".mesh.surface_set_material(0, material)
|
||||
$AnimationPlayer.play("StarAction")
|
||||
|
||||
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://5yw5sbkwj0qk"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/target.gd" id="1_kdcb3"]
|
||||
[ext_resource type="AudioStream" uid="uid://dnwh2iqwi86ku" path="res://assets/Sounds/04 bass.ogg" id="2_xtxs5"]
|
||||
[ext_resource type="PackedScene" uid="uid://cp2i64bioqppu" path="res://assets/love_potion.tscn" id="3_l1kad"]
|
||||
[ext_resource type="Script" path="res://assets/love_potion_target.gd" id="4_6owuw"]
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_2pv4i"]
|
||||
size = Vector3(0.8, 0.8, 0.8)
|
||||
|
||||
[node name="Target1" type="StaticBody3D" groups=["targets"]]
|
||||
script = ExtResource("1_kdcb3")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
||||
shape = SubResource("BoxShape3D_2pv4i")
|
||||
|
||||
[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."]
|
||||
stream = ExtResource("2_xtxs5")
|
||||
volume_db = -80.0
|
||||
autoplay = true
|
||||
|
||||
[node name="Love Potion" parent="." instance=ExtResource("3_l1kad")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.330896, 0)
|
||||
script = ExtResource("4_6owuw")
|
||||
|
||||
[connection signal="occupancy_changed" from="." to="Love Potion" method="_on_target_1_occupancy_changed"]
|
|
@ -1,26 +0,0 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://yqgq7gjbu72p"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/target.gd" id="1_8ktrr"]
|
||||
[ext_resource type="AudioStream" uid="uid://cqb1bo72232vs" path="res://assets/Sounds/03 highpiano.ogg" id="2_hpxkg"]
|
||||
[ext_resource type="PackedScene" uid="uid://bgh4fmqrhb0cs" path="res://assets/star_bulb.tscn" id="3_shqyy"]
|
||||
[ext_resource type="Script" path="res://assets/star_bulb_target.gd" id="4_5igaa"]
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_2pv4i"]
|
||||
size = Vector3(0.8, 0.8, 0.8)
|
||||
|
||||
[node name="Target1" type="StaticBody3D" groups=["targets"]]
|
||||
script = ExtResource("1_8ktrr")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
||||
shape = SubResource("BoxShape3D_2pv4i")
|
||||
|
||||
[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."]
|
||||
stream = ExtResource("2_hpxkg")
|
||||
volume_db = -80.0
|
||||
autoplay = true
|
||||
|
||||
[node name="Star bulb" parent="." instance=ExtResource("3_shqyy")]
|
||||
transform = Transform3D(1.3, 0, 0, 0, 1.3, 0, 0, 0, 1.3, 0, -0.542325, 0)
|
||||
script = ExtResource("4_5igaa")
|
||||
|
||||
[connection signal="occupancy_changed" from="." to="Star bulb" method="_on_target_1_occupancy_changed"]
|
|
@ -9,7 +9,7 @@ custom_features=""
|
|||
export_filter="all_resources"
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path="bin/Syneed.exe"
|
||||
export_path="bin/Sneeditorium.exe"
|
||||
encryption_include_filters=""
|
||||
encryption_exclude_filters=""
|
||||
encrypt_pck=false
|
||||
|
@ -31,7 +31,7 @@ codesign/timestamp_server_url=""
|
|||
codesign/digest_algorithm=1
|
||||
codesign/description=""
|
||||
codesign/custom_options=PackedStringArray()
|
||||
application/modify_resources=false
|
||||
application/modify_resources=true
|
||||
application/icon=""
|
||||
application/console_wrapper_icon=""
|
||||
application/icon_interpolation=4
|
||||
|
|
3
override.cfg
Normal file
|
@ -0,0 +1,3 @@
|
|||
[xr]
|
||||
|
||||
openxr/enabled=true
|
|
@ -10,8 +10,8 @@ config_version=5
|
|||
|
||||
[application]
|
||||
|
||||
config/name="Syneed"
|
||||
config/description="Formerly Sneeditorium's. gpu particle system puzzle game."
|
||||
config/name="Sneeditorium"
|
||||
config/description="gpu particle system puzzle game."
|
||||
config/version="0.1"
|
||||
run/main_scene="res://demo_staging.tscn"
|
||||
config/features=PackedStringArray("4.3")
|
||||
|
|
|
@ -80,16 +80,7 @@ func check_puzzle_completion(delta: float) -> void:
|
|||
_completion_timer += delta
|
||||
if _completion_timer >= completion_time:
|
||||
_puzzle_complete = true
|
||||
print("puzzle completed")
|
||||
puzzle_completed.emit()
|
||||
force_drop_and_disable_manipulators()
|
||||
else:
|
||||
_completion_timer = 0.0
|
||||
|
||||
|
||||
# Force drop and disable all manipulators when puzzle is complete
|
||||
func force_drop_and_disable_manipulators():
|
||||
var manipulators = get_tree().get_nodes_in_group("manipulators")
|
||||
for manipulator in manipulators:
|
||||
manipulator.drop()
|
||||
manipulator.enabled = false
|
||||
|
|
|
@ -45,9 +45,3 @@ layout_mode = 2
|
|||
text = "Valentine"
|
||||
script = ExtResource("2_4d80g")
|
||||
scene_path = "res://scenes/valentine_scene/valentine_scene.tscn"
|
||||
|
||||
[node name="SceneSelect5" type="Button" parent="MarginContainer/VBoxContainer" groups=["scene_button"]]
|
||||
layout_mode = 2
|
||||
text = "Pipes"
|
||||
script = ExtResource("2_4d80g")
|
||||
scene_path = "res://scenes/pipes_scene/pipes_scene.tscn"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[gd_resource type="Theme" load_steps=3 format=3 uid="uid://bfjhdxefw3nxu"]
|
||||
[gd_resource type="Theme" load_steps=3 format=3 uid="uid://b85lk4d2qs3dv"]
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qmc8q"]
|
||||
bg_color = Color(0.171637, 0.171637, 0.171637, 1)
|
||||
|
|
|
@ -1,38 +0,0 @@
|
|||
[gd_resource type="ParticleProcessMaterial" load_steps=5 format=3 uid="uid://db6gxv4sns4ex"]
|
||||
|
||||
[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.848753, 0.313913, 0.294879, 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 = 1.0
|
||||
collision_bounce = 0.0
|
|
@ -1,11 +0,0 @@
|
|||
[gd_resource type="StandardMaterial3D" format=3 uid="uid://1gk8yvunqk7d"]
|
||||
|
||||
[resource]
|
||||
shading_mode = 2
|
||||
vertex_color_use_as_albedo = true
|
||||
vertex_color_is_srgb = true
|
||||
emission_enabled = true
|
||||
emission = Color(2, 1.335, 0.166, 1)
|
||||
emission_energy_multiplier = 4.89
|
||||
disable_receive_shadows = true
|
||||
use_particle_trails = true
|
|
@ -1,26 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="3d_texture"
|
||||
type="CompressedTexture3D"
|
||||
uid="uid://dlrcjkwxa2rud"
|
||||
path="res://.godot/imported/pipes_scene.GPUParticlesCollisionSDF3D_data.exr-a8a34a9db7e4fd16a2ab5cced5e5bb22.ctex3d"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://scenes/pipes_scene/pipes_scene.GPUParticlesCollisionSDF3D_data.exr"
|
||||
dest_files=["res://.godot/imported/pipes_scene.GPUParticlesCollisionSDF3D_data.exr-a8a34a9db7e4fd16a2ab5cced5e5bb22.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=64
|
|
@ -1,43 +0,0 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://b47wuj6l7jcer"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/target.gd" id="1_yma8k"]
|
||||
[ext_resource type="AudioStream" uid="uid://cqb1bo72232vs" path="res://assets/Sounds/03 highpiano.ogg" id="2_pbmr6"]
|
||||
[ext_resource type="PackedScene" uid="uid://bgh4fmqrhb0cs" path="res://assets/star_bulb.tscn" id="3_mq1le"]
|
||||
[ext_resource type="Script" path="res://assets/star_bulb_target.gd" id="4_1tttv"]
|
||||
|
||||
[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="Target1" type="StaticBody3D" groups=["targets"]]
|
||||
script = ExtResource("1_yma8k")
|
||||
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
||||
shape = SubResource("BoxShape3D_2pv4i")
|
||||
|
||||
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
|
||||
visible = false
|
||||
layers = 4
|
||||
mesh = SubResource("BoxMesh_tp0p7")
|
||||
skeleton = NodePath("../..")
|
||||
surface_material_override/0 = SubResource("StandardMaterial3D_mjtav")
|
||||
|
||||
[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="."]
|
||||
stream = ExtResource("2_pbmr6")
|
||||
volume_db = -80.0
|
||||
autoplay = true
|
||||
|
||||
[node name="Star bulb" parent="." instance=ExtResource("3_mq1le")]
|
||||
transform = Transform3D(1.3, 0, 0, 0, 1.3, 0, 0, 0, 1.3, 0, -0.542325, 0)
|
||||
script = ExtResource("4_1tttv")
|
||||
|
||||
[connection signal="occupancy_changed" from="." to="Star bulb" method="_on_target_1_occupancy_changed"]
|
|
@ -23,7 +23,7 @@ func _ready() -> void:
|
|||
|
||||
func _process(delta: float) -> void:
|
||||
_current_occupancy = lerp(_current_occupancy, _target_occupancy, lerp_speed * delta)
|
||||
if mesh:
|
||||
|
||||
var material = mesh.get_surface_override_material(0)
|
||||
if material:
|
||||
material.emission_energy_multiplier = _current_occupancy * 10
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=38 format=3 uid="uid://bd86thqpujh3p"]
|
||||
[gd_scene load_steps=45 format=3 uid="uid://bd86thqpujh3p"]
|
||||
|
||||
[ext_resource type="Script" path="res://scenes/base_game_scene.gd" id="1_243qh"]
|
||||
[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"]
|
||||
[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"]
|
||||
|
@ -9,12 +9,13 @@
|
|||
[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="AudioStream" uid="uid://dnwh2iqwi86ku" path="res://assets/Sounds/04 bass.ogg" id="12_8dki8"]
|
||||
[ext_resource type="AudioStream" uid="uid://cv0f1tu5pac60" path="res://assets/Sounds/02 midpiano.ogg" id="13_6bsa0"]
|
||||
[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.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/performance_settings_menu.tscn" id="14_s5dwy"]
|
||||
[ext_resource type="PackedScene" uid="uid://b47wuj6l7jcer" path="res://scenes/star_bulb_target.tscn" id="17_3djum"]
|
||||
[ext_resource type="PackedScene" uid="uid://bu0fu4uiwyu65" path="res://scenes/win_particles.tscn" id="17_68lw0"]
|
||||
[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="PackedScene" uid="uid://cibwlfqvmirgb" path="res://scenes/ambient_particles.tscn" id="19_dlo8s"]
|
||||
|
@ -41,7 +42,7 @@ roughness = 0.27
|
|||
|
||||
[sub_resource type="TextMesh" id="TextMesh_6owc4"]
|
||||
material = SubResource("StandardMaterial3D_tm3oq")
|
||||
text = "Syneed"
|
||||
text = "Sneed"
|
||||
font_size = 36
|
||||
pixel_size = 0.1
|
||||
depth = 0.5
|
||||
|
@ -105,6 +106,39 @@ cap_top = false
|
|||
cap_bottom = false
|
||||
curve = SubResource("Curve_y0yng")
|
||||
|
||||
[sub_resource type="BoxShape3D" id="BoxShape3D_gofwq"]
|
||||
|
||||
[sub_resource type="BoxMesh" id="BoxMesh_0cc1r"]
|
||||
|
||||
[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"]
|
||||
|
||||
[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)
|
||||
|
||||
|
@ -116,9 +150,7 @@ emission = Color(0.208505, 0.70691, 0.626474, 1)
|
|||
shading_mode = 0
|
||||
|
||||
[node name="TitleScene" type="Node3D"]
|
||||
script = ExtResource("1_243qh")
|
||||
completion_threshold = 0.2
|
||||
completion_time = 2.0
|
||||
script = ExtResource("1_t86sx")
|
||||
|
||||
[node name="XROrigin3D" parent="." instance=ExtResource("2_xk21l")]
|
||||
|
||||
|
@ -161,17 +193,19 @@ shape = SubResource("BoxShape3D_jwkgy")
|
|||
mesh = SubResource("PlaneMesh_gsjte")
|
||||
|
||||
[node name="Title" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2.59344, -10.1744)
|
||||
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 = 2.097
|
||||
light_energy = 1.308
|
||||
light_bake_mode = 1
|
||||
light_cull_mask = 4294443007
|
||||
shadow_enabled = true
|
||||
omni_range = 14.8072
|
||||
omni_attenuation = 0.93
|
||||
metadata/_edit_lock_ = true
|
||||
|
||||
[node name="ProxyCollisionDetector" parent="." instance=ExtResource("7_1kkxh")]
|
||||
|
@ -197,6 +231,60 @@ trail_lifetime = 0.5
|
|||
process_material = SubResource("ParticleProcessMaterial_y126y")
|
||||
draw_pass_1 = SubResource("TubeTrailMesh_xiw4w")
|
||||
|
||||
[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("11_7oif6")
|
||||
|
||||
[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("14_8b4v6")
|
||||
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, -1.21807, 4.27292, -10.0553)
|
||||
script = ExtResource("11_7oif6")
|
||||
|
||||
[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("13_6bsa0")
|
||||
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.005826, 1.90465, -9.1875)
|
||||
script = ExtResource("11_7oif6")
|
||||
|
||||
[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("12_8dki8")
|
||||
volume_db = -80.0
|
||||
autoplay = true
|
||||
|
||||
[node name="Manipulator0" parent="." instance=ExtResource("17_uqqr1")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.63926, -9.75923)
|
||||
|
||||
|
@ -222,33 +310,9 @@ surface_material_override/0 = SubResource("StandardMaterial3D_hyt1m")
|
|||
[node name="AmbientParticles" parent="." instance=ExtResource("19_dlo8s")]
|
||||
|
||||
[node name="LevelSelect3D" parent="." instance=ExtResource("13_ab6mb")]
|
||||
transform = Transform3D(0.813314, 0, 0.581825, 0, 1, 0, -0.581825, 0, 0.813314, -5.18917, 1.44193, -3.00804)
|
||||
transform = Transform3D(0.866025, 0, 0.5, 0, 1, 0, -0.5, 0, 0.866025, -2.95677, 1.44193, -4.49419)
|
||||
screen_size = Vector2(2, 2)
|
||||
scene = ExtResource("20_b65a1")
|
||||
viewport_size = Vector2(200, 200)
|
||||
material = SubResource("StandardMaterial3D_6y3wb")
|
||||
scene_properties_keys = PackedStringArray()
|
||||
|
||||
[node name="WinParticles" parent="." instance=ExtResource("17_68lw0")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6, -8)
|
||||
|
||||
[node name="Target4" parent="." instance=ExtResource("17_3djum")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.31548, 4.27292, -10.1667)
|
||||
|
||||
[node name="Target5" parent="." instance=ExtResource("17_3djum")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.21807, 4.27292, -10.0553)
|
||||
|
||||
[node name="AudioStreamPlayer3D" parent="Target5" index="2"]
|
||||
stream = ExtResource("13_6bsa0")
|
||||
|
||||
[node name="Target6" parent="." instance=ExtResource("17_3djum")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.005826, 1.90465, -9.1875)
|
||||
|
||||
[node name="AudioStreamPlayer3D" parent="Target6" index="2"]
|
||||
stream = ExtResource("12_8dki8")
|
||||
|
||||
[connection signal="puzzle_completed" from="." to="WinParticles" method="_on_puzzle_completed"]
|
||||
|
||||
[editable path="Target4"]
|
||||
[editable path="Target5"]
|
||||
[editable path="Target6"]
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
[gd_scene load_steps=19 format=3 uid="uid://dqbxp72mjmbc"]
|
||||
[gd_scene load_steps=24 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="PackedScene" uid="uid://b47wuj6l7jcer" path="res://scenes/star_bulb_target.tscn" id="5_g0pjq"]
|
||||
[ext_resource type="PackedScene" uid="uid://bu0fu4uiwyu65" path="res://scenes/win_particles.tscn" id="9_31knv"]
|
||||
[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"]
|
||||
[ext_resource type="PackedScene" uid="uid://bgh4fmqrhb0cs" path="res://assets/star_bulb.tscn" id="7_aq638"]
|
||||
[ext_resource type="Script" path="res://assets/star_bulb_target.gd" id="8_ipvvg"]
|
||||
|
||||
[sub_resource type="Gradient" id="Gradient_0ygfi"]
|
||||
colors = PackedColorArray(0.720471, 0.182584, 0.797749, 1, 1, 1, 3, 1)
|
||||
|
@ -93,6 +95,19 @@ size = Vector3(0.2, 0.2, 0.2)
|
|||
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"]
|
||||
|
@ -141,10 +156,27 @@ mesh = SubResource("PrismMesh_f1dje")
|
|||
skeleton = NodePath("")
|
||||
surface_material_override/0 = SubResource("StandardMaterial3D_vyhi3")
|
||||
|
||||
[node name="Target1" parent="." index="18" instance=ExtResource("5_g0pjq")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.521359, 3.59335, -3.06702)
|
||||
[node name="Target1" type="StaticBody3D" parent="." index="18" 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="WinParticles" parent="." index="20" instance=ExtResource("9_31knv")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5, -3)
|
||||
[node name="CollisionShape3D" type="CollisionShape3D" parent="Target1" index="0"]
|
||||
shape = SubResource("BoxShape3D_2pv4i")
|
||||
|
||||
[connection signal="puzzle_completed" from="." to="WinParticles" method="_on_puzzle_completed"]
|
||||
[node name="MeshInstance3D" type="MeshInstance3D" parent="Target1" index="1"]
|
||||
visible = false
|
||||
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
|
||||
|
||||
[node name="Star bulb" parent="Target1" index="3" instance=ExtResource("7_aq638")]
|
||||
transform = Transform3D(1.3, 0, 0, 0, 1.3, 0, 0, 0, 1.3, 0, -0.542325, 0)
|
||||
script = ExtResource("8_ipvvg")
|
||||
|
||||
[connection signal="occupancy_changed" from="Target1" to="Target1/Star bulb" method="_on_target_1_occupancy_changed"]
|
||||
|
|