merged develop

This commit is contained in:
2026-09-07 19:13:11 +02:00
35 changed files with 4496 additions and 458 deletions
+8 -4
View File
@@ -632,11 +632,11 @@ do -- INIT DCS_UTIL
---@field b number
---@field a number
local customDrawingIdIncrementer = 4210
local drawID = 4210
function DCS_UTIL.GetNextDrawID()
customDrawingIdIncrementer = customDrawingIdIncrementer + 1
return customDrawingIdIncrementer
drawID = drawID + 1
return drawID
end
---@param groupID number
@@ -683,6 +683,10 @@ do -- INIT DCS_UTIL
---@param drawID number
---@param fillColor DrawColor
function DCS_UTIL.SetFillColor(drawID, fillColor)
if fillColor == nil then
return
end
local lineColorMapped = {
fillColor.r or 0,
fillColor.g or 0,