This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
errors support + multiple game issues (#9)
* fix: some multiple game issues, still a bit iffy * change intro animation + add setup screen * fix button weirdness, add oops + panic + error handling system
- Loading branch information
Showing
10 changed files
with
201 additions
and
24 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="CompressedTexture2D" | ||
uid="uid://dylpmivsu37k8" | ||
path="res://.godot/imported/adastral.png-7554715c26cf7308a7759caa370ebfd8.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://assets/adastral.png" | ||
dest_files=["res://.godot/imported/adastral.png-7554715c26cf7308a7759caa370ebfd8.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=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="CompressedTexture2D" | ||
uid="uid://c5kdgsphlw0bn" | ||
path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://icon.svg" | ||
dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.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=1 | ||
svg/scale=1.0 | ||
editor/scale_with_editor_scale=false | ||
editor/convert_colors_with_editor_theme=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[gd_scene load_steps=3 format=3 uid="uid://dsp33e8s172n5"] | ||
|
||
[ext_resource type="FontFile" uid="uid://culcak1g0byvy" path="res://fonts/HankenGrotesk-Medium.ttf" id="1_e5qvj"] | ||
|
||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_37v2i"] | ||
bg_color = Color(0, 0.392157, 0.678431, 1) | ||
|
||
[node name="Setup" type="Control"] | ||
layout_mode = 3 | ||
anchors_preset = 15 | ||
anchor_right = 1.0 | ||
anchor_bottom = 1.0 | ||
grow_horizontal = 2 | ||
grow_vertical = 2 | ||
|
||
[node name="Panel" type="Panel" parent="."] | ||
layout_mode = 0 | ||
offset_right = 770.0 | ||
offset_bottom = 350.0 | ||
theme_override_styles/panel = SubResource("StyleBoxFlat_37v2i") | ||
|
||
[node name="Label" type="Label" parent="."] | ||
layout_mode = 0 | ||
offset_left = 7.0 | ||
offset_top = 7.0 | ||
offset_right = 172.0 | ||
offset_bottom = 56.0 | ||
theme_override_fonts/font = ExtResource("1_e5qvj") | ||
text = "Welcome to Adastral. | ||
let's get you set up!" | ||
|
||
[node name="Label2" type="Label" parent="."] | ||
layout_mode = 0 | ||
offset_left = 6.0 | ||
offset_top = 65.0 | ||
offset_right = 301.0 | ||
offset_bottom = 88.0 | ||
theme_override_fonts/font = ExtResource("1_e5qvj") | ||
text = "Sourcemod path:" | ||
|
||
[node name="Label3" type="Label" parent="."] | ||
layout_mode = 0 | ||
offset_left = 7.0 | ||
offset_top = 91.0 | ||
offset_right = 302.0 | ||
offset_bottom = 114.0 | ||
theme_override_fonts/font = ExtResource("1_e5qvj") | ||
text = "TF2:" | ||
|
||
[node name="Label4" type="Label" parent="."] | ||
layout_mode = 0 | ||
offset_left = 6.0 | ||
offset_top = 116.0 | ||
offset_right = 301.0 | ||
offset_bottom = 139.0 | ||
theme_override_fonts/font = ExtResource("1_e5qvj") | ||
text = "SDK 2013 Multiplayer:" |