Skip to content

Commit fccd885

Browse files
committed
Update git ignore
1 parent 779336b commit fccd885

File tree

3 files changed

+73
-7
lines changed

3 files changed

+73
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Godot 4+ specific ignores
22
.godot/
33
/android/
4+
builds/

export_presets.cfg

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
[preset.0]
2+
3+
name="Windows Desktop"
4+
platform="Windows Desktop"
5+
runnable=true
6+
advanced_options=false
7+
dedicated_server=false
8+
custom_features=""
9+
export_filter="all_resources"
10+
include_filter=""
11+
exclude_filter=""
12+
export_path="builds/windows/SGJ F24 Visualizer.exe"
13+
encryption_include_filters=""
14+
encryption_exclude_filters=""
15+
encrypt_pck=false
16+
encrypt_directory=false
17+
script_export_mode=2
18+
19+
[preset.0.options]
20+
21+
custom_template/debug=""
22+
custom_template/release=""
23+
debug/export_console_wrapper=1
24+
binary_format/embed_pck=false
25+
texture_format/s3tc_bptc=true
26+
texture_format/etc2_astc=false
27+
binary_format/architecture="x86_64"
28+
codesign/enable=false
29+
codesign/timestamp=true
30+
codesign/timestamp_server_url=""
31+
codesign/digest_algorithm=1
32+
codesign/description=""
33+
codesign/custom_options=PackedStringArray()
34+
application/modify_resources=true
35+
application/icon=""
36+
application/console_wrapper_icon=""
37+
application/icon_interpolation=4
38+
application/file_version=""
39+
application/product_version=""
40+
application/company_name=""
41+
application/product_name=""
42+
application/file_description=""
43+
application/copyright=""
44+
application/trademarks=""
45+
application/export_angle=0
46+
application/export_d3d12=0
47+
application/d3d12_agility_sdk_multiarch=true
48+
ssh_remote_deploy/enabled=false
49+
ssh_remote_deploy/host="user@host_ip"
50+
ssh_remote_deploy/port="22"
51+
ssh_remote_deploy/extra_args_ssh=""
52+
ssh_remote_deploy/extra_args_scp=""
53+
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
54+
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
55+
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
56+
$settings = New-ScheduledTaskSettingsSet
57+
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
58+
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
59+
Start-ScheduledTask -TaskName godot_remote_debug
60+
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
61+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
62+
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
63+
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
64+
Remove-Item -Recurse -Force '{temp_dir}'"

scenes/main.tscn

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,16 @@ stretch_mode = 5
128128

129129
[node name="GlitchLogo" type="TextureRect" parent="UI/MarginContainer2/Control"]
130130
layout_mode = 1
131-
anchors_preset = 6
132-
anchor_left = 1.0
131+
anchors_preset = 8
132+
anchor_left = 0.5
133133
anchor_top = 0.5
134-
anchor_right = 1.0
134+
anchor_right = 0.5
135135
anchor_bottom = 0.5
136-
offset_left = -935.0
137-
offset_top = -460.5
138-
offset_bottom = 460.5
139-
grow_horizontal = 0
136+
offset_left = -368.0
137+
offset_top = -400.0
138+
offset_right = 567.0
139+
offset_bottom = 521.0
140+
grow_horizontal = 2
140141
grow_vertical = 2
141142
scale = Vector2(0.955, 0.955)
142143
pivot_offset = Vector2(467, 460)

0 commit comments

Comments
 (0)