This commit is contained in:
Tabby 2026-05-30 12:41:16 +10:00
parent e714542dc4
commit 5b3fb52681

View file

@ -30,6 +30,8 @@ func setup_window():
get_window().size = Vector2i(10, screen_size.y) # set window size to be 10 high and screen width wide get_window().size = Vector2i(10, screen_size.y) # set window size to be 10 high and screen width wide
DisplayServer.window_set_position(screen_pos + Vector2i(screen_size.x-10,0)) # set position of window to be just above the taskbar DisplayServer.window_set_position(screen_pos + Vector2i(screen_size.x-10,0)) # set position of window to be just above the taskbar
position.y = 0 # set position of bar to be where it should be (moves when we change the window size) position.y = 0 # set position of bar to be where it should be (moves when we change the window size)
position.x = 10
rotation_degrees = 90
# Called every frame. 'delta' is the elapsed time since the previous frame. # Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void: func _process(delta: float) -> void: