blob: 32db4211380136ed280d0dff9ebaca90fe638f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
print(DisplayServer.screen_get_size())
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
|