Skip to content

Commit 79b7088

Browse files
committed
make it work for 1.0.2, the save meter also works as intendes
1 parent 0e81384 commit 79b7088

26 files changed

+42
-178
lines changed

export_presets.cfg

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
name="Export Extension (PCK)"
44
platform="Windows Desktop"
55
runnable=true
6+
advanced_options=false
67
dedicated_server=false
78
custom_features=""
89
export_filter="all_resources"
910
include_filter="*.json"
10-
exclude_filter="res://src/Extensions/TimeTracking/EmptyClasses/*"
11+
exclude_filter="res://src/Classes/*"
1112
export_path=""
1213
encryption_include_filters=""
1314
encryption_exclude_filters=""
1415
encrypt_pck=false
1516
encrypt_directory=false
17+
script_export_mode=2
1618

1719
[preset.0.options]
1820

1921
custom_template/debug=""
2022
custom_template/release=""
2123
debug/export_console_wrapper=1
2224
binary_format/embed_pck=false
23-
texture_format/bptc=false
24-
texture_format/s3tc=true
25-
texture_format/etc=false
26-
texture_format/etc2=false
25+
texture_format/s3tc_bptc=true
26+
texture_format/etc2_astc=false
2727
binary_format/architecture="x86_64"
2828
codesign/enable=false
2929
codesign/timestamp=true
@@ -43,6 +43,8 @@ application/file_description=""
4343
application/copyright=""
4444
application/trademarks=""
4545
application/export_angle=0
46+
application/export_d3d12=0
47+
application/d3d12_agility_sdk_multiarch=true
4648
ssh_remote_deploy/enabled=false
4749
ssh_remote_deploy/host="user@host_ip"
4850
ssh_remote_deploy/port="22"
@@ -60,5 +62,9 @@ Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorActi
6062
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
6163
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
6264
Remove-Item -Recurse -Force '{temp_dir}'"
65+
texture_format/bptc=false
66+
texture_format/s3tc=true
67+
texture_format/etc=false
68+
texture_format/etc2=false
6369
binary_format/64_bits=true
6470
texture_format/no_bptc_fallbacks=true

project.godot

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ config_version=5
1111
[application]
1212

1313
config/name="TimeTracking"
14-
config/description="A pixelorama Extention (The "
15-
config/features=PackedStringArray("4.2")
16-
" field are not related to extention system so they can be anything)run/main_scene"="res://src/Extensions/TimeTracking/Main.tscn"
14+
config/features=PackedStringArray("4.3")
1715

1816
[physics]
1917

2018
common/enable_pause_aware_picking=true
2119

2220
[rendering]
2321

22+
renderer/rendering_method="gl_compatibility"
23+
renderer/rendering_method.mobile="gl_compatibility"
2424
quality/driver/driver_name="GLES2"
2525
vram_compression/import_etc=true

src/Classes/Project.gd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# gdlint: ignore=max-public-methods
2+
class_name Project
3+
extends RefCounted
4+
# A class for project properties.
5+
6+
7+
func _init(_frames := [], _name := tr("untitled"), _size := Vector2(64, 64)) -> void:
8+
pass

src/Extensions/TimeTracking/EmptyClasses/AnimationTag.gd

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/Extensions/TimeTracking/EmptyClasses/BaseCel.gd

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/Extensions/TimeTracking/EmptyClasses/BaseLayer.gd

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/Extensions/TimeTracking/EmptyClasses/BaseTool.gd

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/Extensions/TimeTracking/EmptyClasses/Cel3D.gd

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/Extensions/TimeTracking/EmptyClasses/Cel3DObject.gd

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/Extensions/TimeTracking/EmptyClasses/Drawers.gd

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)