её переименовали в PathFillConvex
перевёл на луа с использованием PathArcTo, т.к. нет доступа к полю _VtxCurrentIdx. поэтому имеется небольшой косяк и я не знаю как его исправить:
Посмотреть вложение 10677
сообщите, если найдёте способ. _VtxCurrentIdx добавлю в следующей обнове, если она будет
использование:
local pie = require 'imgui_piemenu'
if imgui.IsWindowHovered() and imgui.IsMouseClicked(1) then
imgui.OpenPopup('PieMenu')
end
if pie.BeginPiePopup('PieMenu', 1) then
if pie.PieMenuItem('Test1') then end
if pie.PieMenuItem('Test2') then end
--if pie.PieMenuItem('Test5') then end
if pie.PieMenuItem('Test3', false) then end
if pie.BeginPieMenu('Sub') then
if pie.BeginPieMenu('Sub sub\nmenu') then
if pie.PieMenuItem('SubSub') then end
if pie.PieMenuItem('SubSub2') then end
pie.EndPieMenu()
end
if pie.PieMenuItem('TestSub') then end
if pie.PieMenuItem('TestSub2') then end
pie.EndPieMenu()
end
pie.EndPiePopup()
end