From cd68c57c9b8412577a7a2414bd5b1b6fd3b118e1 Mon Sep 17 00:00:00 2001 From: mehbark Date: Mon, 5 May 2025 23:59:32 -0400 Subject: [PATCH] minor aesthetic changes, line up sun with squares more --- board.gd | 2 +- main.gd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board.gd b/board.gd index 34df7c2..353cb30 100644 --- a/board.gd +++ b/board.gd @@ -10,7 +10,7 @@ func _ready(): # for zooming out to see the whole puzzle func top_left_aabb() -> AABB: - return AABB(position-Vector3(1,0,1), Vector3.ONE*0.1) + return AABB(position-Vector3(0,0,1), Vector3.ONE*0.1) func bottom_right_aabb() -> AABB: return AABB(position + Vector3(dims.x, 0, dims.y) + Vector3(1,0,2), Vector3.ONE*0.1) diff --git a/main.gd b/main.gd index ac72608..3c3b833 100644 --- a/main.gd +++ b/main.gd @@ -27,7 +27,7 @@ var time := 0: set(new_time): var tween := get_tree().create_tween() var anim_time = 1.0 if slowmo() else 0.1 - tween.tween_property($Sun, "rotation_degrees:y", -20*new_time, anim_time) + tween.tween_property($Sun, "rotation_degrees:y", -15*new_time, anim_time) time = new_time var advancing := false