Compare commits

...

13 Commits

Author SHA1 Message Date
b3af967745 MP3 player mutes ambient noise while playing
All checks were successful
linting & formatting / build (push) Successful in 21s
2025-06-27 18:03:09 -06:00
f840738288 MP3 UI scrolling 2025-06-27 17:46:08 -06:00
22163f6f32 Renamed MP3 tracks 2025-06-27 16:37:38 -06:00
41814c2c4a Workaround for clipping rectangle rotation issue by simply hiding things that shouldn't be shown 2025-06-27 16:18:03 -06:00
05edbf5d27 Music playback continues quietly while paused 2025-06-27 14:37:51 -06:00
dc26836020 MP3 player has force feedback
All checks were successful
linting & formatting / build (push) Successful in 24s
2025-06-27 12:56:50 -06:00
36e5bcf099 Revised World debug functions 2025-06-27 12:47:06 -06:00
0de77c8595 Added MP3 player functionality 2025-06-27 12:22:17 -06:00
64f9b4e997 Added music assets, and added WAVs to LFS tracking
All checks were successful
linting & formatting / build (push) Successful in 26s
2025-06-26 23:38:12 -06:00
db467e10c9 MP3 Player UI 2025-06-26 23:36:00 -06:00
fce4d1f7fd MP3 Player placeholders 2025-06-20 12:58:17 -06:00
fd157105f3 Bulkheads can be closed by switches 2025-06-17 19:05:17 -06:00
86b0fa842c Broke up ghost ship level into smaller room chunks 2025-06-17 17:54:27 -06:00
138 changed files with 8322 additions and 6137 deletions

6
.gitattributes vendored
View File

@ -2,3 +2,9 @@
* text=auto eol=lf
*.svg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.exr filter=lfs diff=lfs merge=lfs -text
*.res filter=lfs diff=lfs merge=lfs -text
*.glb filter=lfs diff=lfs merge=lfs -text
*.wav filter=lfs diff=lfs merge=lfs -text
*.ogg filter=lfs diff=lfs merge=lfs -text
*.dds filter=lfs diff=lfs merge=lfs -text

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -16,12 +16,12 @@ Rendering=null
antialiasing=1
generate_mipmaps=true
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
multichannel_signed_distance_field=true
msdf_pixel_range=8
msdf_size=48
allow_system_fallback=true
force_autohinter=false
hinting=1
hinting=0
subpixel_positioning=4
keep_rounding_remainders=true
oversampling=0.0

Binary file not shown.

View File

@ -0,0 +1,35 @@
[remap]
importer="font_data_dynamic"
type="FontFile"
uid="uid://dass4iqsje7pl"
path="res://.godot/imported/Silkscreen-Sharp.ttf-dcb5c83ebb8ea0d97782b63dc405147a.fontdata"
[deps]
source_file="res://assets/fonts/Silkscreen/Silkscreen-Sharp.ttf"
dest_files=["res://.godot/imported/Silkscreen-Sharp.ttf-dcb5c83ebb8ea0d97782b63dc405147a.fontdata"]
[params]
Rendering=null
antialiasing=0
generate_mipmaps=true
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48
allow_system_fallback=true
force_autohinter=false
hinting=0
subpixel_positioning=4
keep_rounding_remainders=true
oversampling=0.0
Fallbacks=null
fallbacks=[]
Compress=null
compress=true
preload=[]
language_support={}
script_support={}
opentype_features={}

BIN
assets/music/chorus_01.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://bp1dv4lv3344w"
path="res://.godot/imported/chorus_01.wav-08b913ed895775e6776d50f6bebe6a94.sample"
[deps]
source_file="res://assets/music/chorus_01.wav"
dest_files=["res://.godot/imported/chorus_01.wav-08b913ed895775e6776d50f6bebe6a94.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/descending_04.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://ccqmeqw3moxfd"
path="res://.godot/imported/descending_04.wav-d6765ea0a0cafe097da2847bcc202f16.sample"
[deps]
source_file="res://assets/music/descending_04.wav"
dest_files=["res://.godot/imported/descending_04.wav-d6765ea0a0cafe097da2847bcc202f16.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/desert_01.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://dgxko5ds8u2lk"
path="res://.godot/imported/desert_01.wav-581b6d94c48b10543d281e48b9fba2bb.sample"
[deps]
source_file="res://assets/music/desert_01.wav"
dest_files=["res://.godot/imported/desert_01.wav-581b6d94c48b10543d281e48b9fba2bb.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/driving_01.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://d4qqqrnplej6"
path="res://.godot/imported/driving_01.wav-cd2dee17817d890d256fe4c14c9be367.sample"
[deps]
source_file="res://assets/music/driving_01.wav"
dest_files=["res://.godot/imported/driving_01.wav-cd2dee17817d890d256fe4c14c9be367.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/driving_02.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://b1rmpakal8l6j"
path="res://.godot/imported/driving_02.wav-ab678e7fa7549ee6f71278ea940b33ae.sample"
[deps]
source_file="res://assets/music/driving_02.wav"
dest_files=["res://.godot/imported/driving_02.wav-ab678e7fa7549ee6f71278ea940b33ae.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/simple_sample_01.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://dgvknkfvoqk8r"
path="res://.godot/imported/simple_sample_01.wav-f44635820b5ba74709e951468def2cb5.sample"
[deps]
source_file="res://assets/music/simple_sample_01.wav"
dest_files=["res://.godot/imported/simple_sample_01.wav-f44635820b5ba74709e951468def2cb5.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/thaw_v1_fast.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://b6wrx5fibaujw"
path="res://.godot/imported/thaw_v1_fast.wav-69deab9ac1a9e8ba32290fbad3f5a8f6.sample"
[deps]
source_file="res://assets/music/thaw_v1_fast.wav"
dest_files=["res://.godot/imported/thaw_v1_fast.wav-69deab9ac1a9e8ba32290fbad3f5a8f6.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/thaw_v1_slow.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://b3ktgjeq6fupj"
path="res://.godot/imported/thaw_v1_slow.wav-28769b14b2030e9c75166aac3c81680a.sample"
[deps]
source_file="res://assets/music/thaw_v1_slow.wav"
dest_files=["res://.godot/imported/thaw_v1_slow.wav-28769b14b2030e9c75166aac3c81680a.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/thaw_v2_fast.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://p14r7l44dahr"
path="res://.godot/imported/thaw_v2_fast.wav-86f532708c35d5089df8e52aecf29505.sample"
[deps]
source_file="res://assets/music/thaw_v2_fast.wav"
dest_files=["res://.godot/imported/thaw_v2_fast.wav-86f532708c35d5089df8e52aecf29505.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

BIN
assets/music/thaw_v2_slow.wav (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,24 @@
[remap]
importer="wav"
type="AudioStreamWAV"
uid="uid://bkvjtdlhjfr7n"
path="res://.godot/imported/thaw_v2_slow.wav-f845bbe60946eed225876fcc22e1147c.sample"
[deps]
source_file="res://assets/music/thaw_v2_slow.wav"
dest_files=["res://.godot/imported/thaw_v2_slow.wav-f845bbe60946eed225876fcc22e1147c.sample"]
[params]
force/8_bit=false
force/mono=false
force/max_rate=false
force/max_rate_hz=44100
edit/trim=false
edit/normalize=false
edit/loop_mode=2
edit/loop_begin=0
edit/loop_end=-1
compress/mode=2

Binary file not shown.

View File

@ -20,7 +20,12 @@
},
{
"mesh":1,
"name":"Door"
"name":"Door",
"translation":[
0,
2.799999952316284,
0
]
}
],
"animations":[
@ -29,26 +34,26 @@
{
"sampler":0,
"target":{
"node":0,
"node":1,
"path":"translation"
}
},
{
"sampler":1,
"target":{
"node":0,
"node":1,
"path":"rotation"
}
},
{
"sampler":2,
"target":{
"node":0,
"node":1,
"path":"scale"
}
}
],
"name":"RESET",
"name":"close",
"samplers":[
{
"input":8,
@ -56,14 +61,57 @@
"output":9
},
{
"input":8,
"interpolation":"LINEAR",
"output":10
"input":10,
"interpolation":"STEP",
"output":11
},
{
"input":10,
"interpolation":"STEP",
"output":12
}
]
},
{
"channels":[
{
"sampler":0,
"target":{
"node":1,
"path":"translation"
}
},
{
"sampler":1,
"target":{
"node":1,
"path":"rotation"
}
},
{
"sampler":2,
"target":{
"node":1,
"path":"scale"
}
}
],
"name":"close2",
"samplers":[
{
"input":8,
"interpolation":"LINEAR",
"output":11
"output":13
},
{
"input":10,
"interpolation":"STEP",
"output":14
},
{
"input":10,
"interpolation":"STEP",
"output":15
}
]
},
@ -94,19 +142,19 @@
"name":"open",
"samplers":[
{
"input":12,
"input":16,
"interpolation":"LINEAR",
"output":13
"output":17
},
{
"input":14,
"input":18,
"interpolation":"STEP",
"output":15
"output":19
},
{
"input":14,
"input":18,
"interpolation":"STEP",
"output":16
"output":20
}
]
},
@ -137,23 +185,57 @@
"name":"RESET",
"samplers":[
{
"input":8,
"input":21,
"interpolation":"LINEAR",
"output":17
"output":22
},
{
"input":8,
"input":21,
"interpolation":"LINEAR",
"output":18
"output":23
},
{
"input":8,
"input":21,
"interpolation":"LINEAR",
"output":19
"output":24
}
]
}
],
"materials":[
{
"alphaMode":"BLEND",
"doubleSided":true,
"name":"BulkheadFrame",
"normalTexture":{
"index":0
},
"pbrMetallicRoughness":{
"baseColorTexture":{
"index":1
},
"metallicRoughnessTexture":{
"index":2
}
}
},
{
"alphaMode":"BLEND",
"doubleSided":true,
"name":"BulkheadMaterial",
"normalTexture":{
"index":3
},
"pbrMetallicRoughness":{
"baseColorTexture":{
"index":4
},
"metallicRoughnessTexture":{
"index":5
}
}
}
],
"meshes":[
{
"name":"Cube.001",
@ -164,7 +246,8 @@
"NORMAL":1,
"TEXCOORD_0":2
},
"indices":3
"indices":3,
"material":0
}
]
},
@ -177,11 +260,70 @@
"NORMAL":5,
"TEXCOORD_0":6
},
"indices":7
"indices":7,
"material":1
}
]
}
],
"textures":[
{
"sampler":0,
"source":0
},
{
"sampler":0,
"source":1
},
{
"sampler":0,
"source":2
},
{
"sampler":0,
"source":3
},
{
"sampler":0,
"source":4
},
{
"sampler":0,
"source":5
}
],
"images":[
{
"mimeType":"image/png",
"name":"bulkhead_frame_N",
"uri":"bulkhead_frame_N.png"
},
{
"mimeType":"image/png",
"name":"bulkhead_frame_C",
"uri":"bulkhead_frame_C.png"
},
{
"mimeType":"image/png",
"name":"bulkhead_frame_M-bulkhead_frame_R",
"uri":"bulkhead_frame_M-bulkhead_frame_R.png"
},
{
"mimeType":"image/png",
"name":"bulkhead_door_N",
"uri":"bulkhead_door_N.png"
},
{
"mimeType":"image/png",
"name":"bulkhead_door_C",
"uri":"bulkhead_door_C.png"
},
{
"mimeType":"image/png",
"name":"bulkhead_door_M-bulkhead_door_R",
"uri":"bulkhead_door_M-bulkhead_door_R.png"
}
],
"accessors":[
{
"bufferView":0,
@ -254,9 +396,9 @@
{
"bufferView":8,
"componentType":5126,
"count":1,
"count":320,
"max":[
0.041666666666666664
13.333333333333334
],
"min":[
0.041666666666666664
@ -266,43 +408,55 @@
{
"bufferView":9,
"componentType":5126,
"count":1,
"count":320,
"type":"VEC3"
},
{
"bufferView":10,
"componentType":5126,
"count":1,
"type":"VEC4"
},
{
"bufferView":11,
"componentType":5126,
"count":1,
"type":"VEC3"
},
{
"bufferView":12,
"componentType":5126,
"count":160,
"count":2,
"max":[
6.666666666666667
13.333333333333334
],
"min":[
0.041666666666666664
],
"type":"SCALAR"
},
{
"bufferView":11,
"componentType":5126,
"count":2,
"type":"VEC4"
},
{
"bufferView":12,
"componentType":5126,
"count":2,
"type":"VEC3"
},
{
"bufferView":13,
"componentType":5126,
"count":160,
"count":320,
"type":"VEC3"
},
{
"bufferView":14,
"componentType":5126,
"count":2,
"type":"VEC4"
},
{
"bufferView":15,
"componentType":5126,
"count":2,
"type":"VEC3"
},
{
"bufferView":16,
"componentType":5126,
"count":160,
"max":[
6.666666666666667
],
@ -311,32 +465,62 @@
],
"type":"SCALAR"
},
{
"bufferView":15,
"componentType":5126,
"count":2,
"type":"VEC4"
},
{
"bufferView":16,
"componentType":5126,
"count":2,
"type":"VEC3"
},
{
"bufferView":17,
"componentType":5126,
"count":1,
"count":160,
"type":"VEC3"
},
{
"bufferView":18,
"componentType":5126,
"count":2,
"max":[
6.666666666666667
],
"min":[
0.041666666666666664
],
"type":"SCALAR"
},
{
"bufferView":19,
"componentType":5126,
"count":2,
"type":"VEC4"
},
{
"bufferView":20,
"componentType":5126,
"count":2,
"type":"VEC3"
},
{
"bufferView":21,
"componentType":5126,
"count":1,
"max":[
0.041666666666666664
],
"min":[
0.041666666666666664
],
"type":"SCALAR"
},
{
"bufferView":22,
"componentType":5126,
"count":1,
"type":"VEC3"
},
{
"bufferView":23,
"componentType":5126,
"count":1,
"type":"VEC4"
},
{
"bufferView":19,
"bufferView":24,
"componentType":5126,
"count":1,
"type":"VEC3"
@ -393,68 +577,99 @@
},
{
"buffer":0,
"byteLength":4,
"byteLength":1280,
"byteOffset":3736
},
{
"buffer":0,
"byteLength":12,
"byteOffset":3740
},
{
"buffer":0,
"byteLength":16,
"byteOffset":3752
},
{
"buffer":0,
"byteLength":12,
"byteOffset":3768
},
{
"buffer":0,
"byteLength":640,
"byteOffset":3780
},
{
"buffer":0,
"byteLength":1920,
"byteOffset":4420
"byteLength":3840,
"byteOffset":5016
},
{
"buffer":0,
"byteLength":8,
"byteOffset":6340
"byteOffset":8856
},
{
"buffer":0,
"byteLength":32,
"byteOffset":6348
"byteOffset":8864
},
{
"buffer":0,
"byteLength":24,
"byteOffset":6380
"byteOffset":8896
},
{
"buffer":0,
"byteLength":3840,
"byteOffset":8920
},
{
"buffer":0,
"byteLength":32,
"byteOffset":12760
},
{
"buffer":0,
"byteLength":24,
"byteOffset":12792
},
{
"buffer":0,
"byteLength":640,
"byteOffset":12816
},
{
"buffer":0,
"byteLength":1920,
"byteOffset":13456
},
{
"buffer":0,
"byteLength":8,
"byteOffset":15376
},
{
"buffer":0,
"byteLength":32,
"byteOffset":15384
},
{
"buffer":0,
"byteLength":24,
"byteOffset":15416
},
{
"buffer":0,
"byteLength":4,
"byteOffset":15440
},
{
"buffer":0,
"byteLength":12,
"byteOffset":6404
"byteOffset":15444
},
{
"buffer":0,
"byteLength":16,
"byteOffset":6416
"byteOffset":15456
},
{
"buffer":0,
"byteLength":12,
"byteOffset":6432
"byteOffset":15472
}
],
"samplers":[
{
"magFilter":9728,
"minFilter":9984
}
],
"buffers":[
{
"byteLength":6444,
"byteLength":15484,
"uri":"bulkhead.bin"
}
]

BIN
assets/props/bulkhead/bulkhead_door_M-bulkhead_door_R.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ep7ykbhxgcbf"
path="res://.godot/imported/bulkhead_door_M-bulkhead_door_R.png-e1e518a48e3b4ddd72a30986a6ea2d8d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/props/bulkhead/bulkhead_door_M-bulkhead_door_R.png"
dest_files=["res://.godot/imported/bulkhead_door_M-bulkhead_door_R.png-e1e518a48e3b4ddd72a30986a6ea2d8d.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=false
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

BIN
assets/props/bulkhead/bulkhead_frame_M-bulkhead_frame_R.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://lhs1wiku1xuc"
path="res://.godot/imported/bulkhead_frame_M-bulkhead_frame_R.png-e7661d599085e5b566db00c40178b2c4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/props/bulkhead/bulkhead_frame_M-bulkhead_frame_R.png"
dest_files=["res://.godot/imported/bulkhead_frame_M-bulkhead_frame_R.png-e7661d599085e5b566db00c40178b2c4.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=false
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

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/ui/hud/tools/mp3_player.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://0wbowky48ign"
path="res://.godot/imported/mp3_player.png-9e2642a12bd8e4bf9d73deb0fcecc1bc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/ui/hud/tools/mp3_player.png"
dest_files=["res://.godot/imported/mp3_player.png-9e2642a12bd8e4bf9d73deb0fcecc1bc.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=false
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

BIN
assets/ui/hud/tools/mp3_player_screen_mask.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cithtj8fu8pco"
path="res://.godot/imported/mp3_player_screen_mask.png-4d17c6b0038ffdb0f03053b122a1f827.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/ui/hud/tools/mp3_player_screen_mask.png"
dest_files=["res://.godot/imported/mp3_player_screen_mask.png-4d17c6b0038ffdb0f03053b122a1f827.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=false
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

View File

@ -1,6 +1,7 @@
[gd_resource type="AudioBusLayout" format=3 uid="uid://caten2l7w1h6w"]
[resource]
bus/0/volume_db = -0.130497
bus/1/name = &"Music"
bus/1/solo = false
bus/1/mute = false
@ -13,3 +14,9 @@ bus/2/mute = false
bus/2/bypass_fx = false
bus/2/volume_db = 0.0
bus/2/send = &"Master"
bus/3/name = &"Ambient"
bus/3/solo = false
bus/3/mute = false
bus/3/bypass_fx = false
bus/3/volume_db = 0.0
bus/3/send = &"SFX"

View File

@ -31,6 +31,7 @@ ssil_radius = 0.4
ssil_intensity = 2.5
ssil_normal_rejection = 0.73
sdfgi_enabled = true
sdfgi_read_sky_light = false
sdfgi_cascades = 7
glow_enabled = true
glow_levels/1 = 16.0

View File

@ -46,7 +46,7 @@ stream_10/weight = 0.2
script = ExtResource("1_law5k")
id = "ghost_ship"
pretty_name = "HK-409 Dogtooth cargo depot"
version = 1
version = 2
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = ExtResource("1_h081y")
@ -74,7 +74,7 @@ unique_name_in_owner = true
stream = ExtResource("5_ejh2c")
volume_db = -80.0
autoplay = true
bus = &"Music"
bus = &"Ambient"
script = ExtResource("5_jiowi")
[node name="AmbientSFX" type="Node3D" parent="."]
@ -83,6 +83,7 @@ script = ExtResource("5_jiowi")
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -21, 1, -38)
stream = SubResource("AudioStreamRandomizer_d8fas")
unit_size = 2.0
bus = &"Ambient"
interval_mean = 120.0
interval_st_dev = 30.0
@ -90,6 +91,7 @@ interval_st_dev = 30.0
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5, 1, -54)
stream = SubResource("AudioStreamRandomizer_d8fas")
unit_size = 2.0
bus = &"Ambient"
interval_mean = 120.0
interval_st_dev = 30.0
@ -97,6 +99,7 @@ interval_st_dev = 30.0
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -27, 1, -54)
stream = SubResource("AudioStreamRandomizer_d8fas")
unit_size = 2.0
bus = &"Ambient"
interval_mean = 120.0
interval_st_dev = 30.0
@ -104,6 +107,7 @@ interval_st_dev = 30.0
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -2, -77)
stream = SubResource("AudioStreamRandomizer_d8fas")
unit_size = 2.0
bus = &"Ambient"
interval_mean = 120.0
interval_st_dev = 30.0
@ -111,6 +115,7 @@ interval_st_dev = 30.0
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 2, -38)
stream = SubResource("AudioStreamRandomizer_d8fas")
unit_size = 2.0
bus = &"Ambient"
interval_mean = 120.0
interval_st_dev = 30.0

Some files were not shown because too many files have changed in this diff Show More