diff options
| author | dam <dam@gudinoff> | 2021-12-16 01:17:34 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2021-12-16 01:17:34 +0000 |
| commit | 9724fb73abf9fd3760a4f3f3ac941a119708c97b (patch) | |
| tree | 1892493f0e922a3c0b99c049a7039771d739dea7 /main.gd | |
| parent | ecd75887d99d887aabe828f4511d9fd3e1c41428 (diff) | |
| download | surgery-log-9724fb73abf9fd3760a4f3f3ac941a119708c97b.tar.zst surgery-log-9724fb73abf9fd3760a4f3f3ac941a119708c97b.zip | |
First prototype with working database and staging area.
Fix incorrect warp in date picker.
Disable physics engine.
Diffstat (limited to 'main.gd')
| -rw-r--r-- | main.gd | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,6 +1,7 @@ extends Control var timeout: float + onready var controls_sensible_to_keyboard: Array = [ self, get_node("/root/main/about"), @@ -10,8 +11,13 @@ onready var controls_sensible_to_keyboard: Array = [ ] +func _init(): + Physics2DServer.set_active(false) + PhysicsServer.set_active(false) + + + func _process(delta: float): - var keyboard_height: int = OS.get_virtual_keyboard_height() for it in controls_sensible_to_keyboard: it.margin_bottom = -keyboard_height |
