mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-04-03 12:52:30 +02:00
Add simple color validator / parser
This commit is contained in:
@ -405,3 +405,17 @@ function mcl_util.get_object_center(obj)
|
|||||||
pos.y = pos.y + (ymax - ymin) / 2.0
|
pos.y = pos.y + (ymax - ymin) / 2.0
|
||||||
return pos
|
return pos
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function mcl_util.get_color(colorstr)
|
||||||
|
local mc_color = mcl_colors[colorstr:upper()]
|
||||||
|
if mc_color then
|
||||||
|
return mc_color
|
||||||
|
end
|
||||||
|
if #colorstr ~= 7 or colorstr:sub(1, 1) ~= "#"then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local hex = tonumber(colorstr:sub(2, 7), 16)
|
||||||
|
if hex then
|
||||||
|
return colorstr, hex
|
||||||
|
end
|
||||||
|
end
|
||||||
|
Reference in New Issue
Block a user