InitCommit

update 1.4.2 source code
This commit is contained in:
kaia
2024-02-03 18:36:09 -06:00
commit ece4ffd123
216 changed files with 79783 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
extends Node2D
@onready var h = $h
@onready var v = $v
func drawLine():
var s = get_viewport().get_visible_rect().size
v.clear_points()
v.add_point(Vector2(0,-s.y))
v.add_point(Vector2(0,s.y))
h.clear_points()
h.add_point(Vector2(-s.x,0))
h.add_point(Vector2(s.x,0))