portalPoint to the world

This commit is contained in:
minjaesong
2023-09-05 01:40:20 +09:00
parent c4deba14da
commit 8fa9ddeec1
7 changed files with 28 additions and 10 deletions

View File

@@ -122,4 +122,6 @@ class Point2i() {
operator fun component1() = x
operator fun component2() = y
fun toVector() = Vector2(this.x.toDouble(), this.y.toDouble())
}