wip
PR Prerequisites / Bundles Without Errors (pull_request) Failing after 4s
PR Prerequisites / Lua Check (pull_request) Failing after 22s

This commit is contained in:
2026-09-11 11:41:20 +02:00
parent f53d0d5c83
commit ff95845ae8
13 changed files with 54 additions and 62 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ do -- INIT UTIL
---splits a string in sub parts by seperator
---@param input string
---@param seperator string
---@return table result list of strings
---@return Array<string> result list of strings
function UTIL.split_string(input, seperator)
if seperator == nil then
seperator = " "
@@ -237,7 +237,7 @@ do -- INIT UTIL
return ((vec1Norm.x * vec2Norm.x) + (vec1Norm.y * vec2Norm.y) + (vec1Norm.z * vec2Norm.z))
end
---@param polygon Array<Vec2> of pairs { x, y }
---@param x number X location
---@param y number Y location