Skip to content

Commit

Permalink
Updated to Godot 4 and fixed export config
Browse files Browse the repository at this point in the history
  • Loading branch information
Martomate committed Jul 25, 2023
1 parent f907bf6 commit 5e5a8e4
Show file tree
Hide file tree
Showing 16 changed files with 542 additions and 372 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export/
.godot/

32 changes: 16 additions & 16 deletions Bakgrundsbild i launchern2.0.png.import
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
[remap]

importer="texture"
type="StreamTexture"
path="res://.import/Bakgrundsbild i launchern2.0.png-8210d112ce64ea8205615a57672407a9.stex"
type="CompressedTexture2D"
uid="uid://bauin1qhbv52q"
path="res://.godot/imported/Bakgrundsbild i launchern2.0.png-8210d112ce64ea8205615a57672407a9.ctex"
metadata={
"vram_texture": false
}

[deps]

source_file="res://Bakgrundsbild i launchern2.0.png"
dest_files=[ "res://.import/Bakgrundsbild i launchern2.0.png-8210d112ce64ea8205615a57672407a9.stex" ]
dest_files=["res://.godot/imported/Bakgrundsbild i launchern2.0.png-8210d112ce64ea8205615a57672407a9.ctex"]

[params]

compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/hdr_compression=1
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
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/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0
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
28 changes: 14 additions & 14 deletions GameVersion.gd
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ var download_url: String
var file_to_run: String

func _init(id: String, name: String, release_date: String, download_url: String, file_to_run: String):
self.id = id
self.name = name
self.release_date = release_date
self.download_url = download_url
self.file_to_run = file_to_run
self.id = id
self.name = name
self.release_date = release_date
self.download_url = download_url
self.file_to_run = file_to_run

func asDict():
var dict = {}
dict["id"] = id
dict["name"] = name
dict["release_date"] = release_date
dict["url"] = download_url
dict["file_to_run"] = file_to_run
return dict
var dict = {}
dict["id"] = id
dict["name"] = name
dict["release_date"] = release_date
dict["url"] = download_url
dict["file_to_run"] = file_to_run
return dict
33 changes: 33 additions & 0 deletions Verdana.ttf.import
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[remap]

importer="font_data_dynamic"
type="FontFile"
uid="uid://bqkc6pgu1hlux"
path="res://.godot/imported/Verdana.ttf-1f581ec4b5fbca84ada14569dc3f1e76.fontdata"

[deps]

source_file="res://Verdana.ttf"
dest_files=["res://.godot/imported/Verdana.ttf-1f581ec4b5fbca84ada14569dc3f1e76.fontdata"]

[params]

Rendering=null
antialiasing=1
generate_mipmaps=false
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48
allow_system_fallback=true
force_autohinter=false
hinting=1
subpixel_positioning=1
oversampling=0.0
Fallbacks=null
fallbacks=[]
Compress=null
compress=true
preload=[]
language_support={}
script_support={}
opentype_features={}
Loading

0 comments on commit 5e5a8e4

Please sign in to comment.