Skip to content

Commit be4c70b

Browse files
week 9
1 parent e3c4f61 commit be4c70b

File tree

6 files changed

+52
-3
lines changed

6 files changed

+52
-3
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[remap]
2+
3+
importer="mp3"
4+
type="AudioStreamMP3"
5+
uid="uid://bpdnro1l17w15"
6+
path="res://.godot/imported/20 Axes to a Bed.mp3-5ac081cca4c77e7e531f99542e4030e8.mp3str"
7+
8+
[deps]
9+
10+
source_file="res://assets/audio/music/20 Axes to a Bed.mp3"
11+
dest_files=["res://.godot/imported/20 Axes to a Bed.mp3-5ac081cca4c77e7e531f99542e4030e8.mp3str"]
12+
13+
[params]
14+
15+
loop=false
16+
loop_offset=0
17+
bpm=0
18+
beat_count=0
19+
bar_beats=4
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[remap]
2+
3+
importer="mp3"
4+
type="AudioStreamMP3"
5+
uid="uid://dm1gfqtqypk11"
6+
path="res://.godot/imported/Forest Song 1.mp3-b4eea5c3da947138386b87e6d88e7b20.mp3str"
7+
8+
[deps]
9+
10+
source_file="res://assets/audio/music/Forest Song 1.mp3"
11+
dest_files=["res://.godot/imported/Forest Song 1.mp3-b4eea5c3da947138386b87e6d88e7b20.mp3str"]
12+
13+
[params]
14+
15+
loop=false
16+
loop_offset=0
17+
bpm=0
18+
beat_count=0
19+
bar_beats=4

global/autoload/save_file/save_file.gd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,18 @@ func _get_locale(save_data: Dictionary) -> String:
289289

290290

291291
func _update_metadata() -> void:
292+
if Game.params["debug_logs"]:
293+
print("Update Metadata [last_utc_time]")
294+
var last_time: Dictionary = metadata["last_utc_time"]
295+
var now_time: Dictionary = Time.get_datetime_dict_from_system(true)
296+
print(last_time)
297+
print(now_time)
298+
var unix_delta: int = (
299+
Time.get_unix_time_from_datetime_dict(now_time)
300+
- Time.get_unix_time_from_datetime_dict(last_time)
301+
)
302+
print(DateTimeUtils.format_seconds(unix_delta))
303+
292304
metadata["last_utc_time"] = Time.get_datetime_dict_from_system(true)
293305
metadata["last_timezone"] = Time.get_time_zone_from_system()
294306
_sanitize_timezone(metadata["last_timezone"])

global/const/game.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const WORKER_RESOURCE_ID: String = "worker"
44
const WORKER_ROLE_RESOURCE: Array[String] = [WORKER_RESOURCE_ID, "swordsman"]
55

66
const VERSION_MAJOR: String = "pre-alpha"
7-
const VERSION_MINOR: String = "week 8"
7+
const VERSION_MINOR: String = "week 9"
88

99
const params: Dictionary = params_prod #params_prod #params_debug
1010

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PLAY THE GAME : https://tinytakinteller.itch.io/the-best-game-ever
66

77
READ WEEKLY DEVLOG'S : https://tinytakinteller.itch.io/the-best-game-ever/devlog
88

9-
Current Version - [ PRE-ALPHA : WEEK 8 ]
9+
Current Version - [ PRE-ALPHA : WEEK 9 ]
1010

1111
*Gather Resources...*
1212

scenes/autostart/main/main.tscn

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,3 @@ theme_override_constants/margin_left = 0
168168
[node name="DeveloperConsole" parent="UI" instance=ExtResource("20_yijsf")]
169169
visible = false
170170
layout_mode = 1
171-
buffer_size = null

0 commit comments

Comments
 (0)