Skip to content

Commit

Permalink
Add support for multiple worlds
Browse files Browse the repository at this point in the history
  • Loading branch information
Janorico committed May 19, 2023
1 parent 46e7e1a commit 9161d9d
Show file tree
Hide file tree
Showing 15 changed files with 524 additions and 21 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@
## Sources

* [JetBrains Mono v2.304](https://www.jetbrains.com/lp/mono/)
* [World Map](https://icons8.com/icon/13805/world-map) icon by [Icons8](https://icons8.com)
4 changes: 4 additions & 0 deletions assets/icons/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions assets/icons/close.svg.import
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/close.svg-a39d6ec6a963366ce69cbdb73008bf4d.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://assets/icons/close.svg"
dest_files=[ "res://.import/close.svg-a39d6ec6a963366ce69cbdb73008bf4d.stex" ]

[params]

compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
process/normal_map_invert_y=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0
4 changes: 4 additions & 0 deletions assets/icons/close_hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions assets/icons/close_hover.svg.import
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/close_hover.svg-e0957457d5727cb3180ebc0e81c5f08a.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://assets/icons/close_hover.svg"
dest_files=[ "res://.import/close_hover.svg-e0957457d5727cb3180ebc0e81c5f08a.stex" ]

[params]

compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
process/normal_map_invert_y=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0
4 changes: 4 additions & 0 deletions assets/icons/close_pressed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions assets/icons/close_pressed.svg.import
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/close_pressed.svg-76140edad14fe83fa7f2ed3bbe03e16d.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://assets/icons/close_pressed.svg"
dest_files=[ "res://.import/close_pressed.svg-76140edad14fe83fa7f2ed3bbe03e16d.stex" ]

[params]

compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
process/normal_map_invert_y=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0
Binary file added assets/icons/icons8-world-map-96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions assets/icons/icons8-world-map-96.png.import
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/icons8-world-map-96.png-dd3f224232a301c3e7b134cd3e3ef79d.stex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://assets/icons/icons8-world-map-96.png"
dest_files=[ "res://.import/icons8-world-map-96.png-dd3f224232a301c3e7b134cd3e3ef79d.stex" ]

[params]

compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
process/normal_map_invert_y=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0
2 changes: 1 addition & 1 deletion project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ _global_script_class_icons={
[application]

config/name="VoxelFun"
run/main_scene="res://scenes/game/main.tscn"
run/main_scene="res://scenes/startup.tscn"
config/use_custom_user_dir=true
config/custom_user_dir_name="JanoSemi/VoxelFun"
boot_splash/image="res://assets/logo/voxelfun_logo.png"
Expand Down
6 changes: 4 additions & 2 deletions scenes/game/pause_menu.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,11 @@ margin_right = 32.0
margin_bottom = 32.0
bbcode_enabled = true
bbcode_text = "[center][b]VoxelFun Sources[/b][/center]
[url=https://www.jetbrains.com/lp/mono/]JetBrains Mono v2.304[/url]"
[url=https://www.jetbrains.com/lp/mono/]JetBrains Mono v2.304[/url]
[url=https://icons8.com/icon/13805/world-map]World Map[/url] icon by [url=https://icons8.com]Icons8[/url]"
text = "VoxelFun Sources
JetBrains Mono v2.304"
JetBrains Mono v2.304
World Map icon by Icons8"

[node name="License" type="Label" parent="AboutDialog/TabContainer"]
visible = false
Expand Down
Loading

0 comments on commit 9161d9d

Please sign in to comment.