コード例 #1
0
ファイル: ImGuiUtils.cs プロジェクト: andreybetty/yafc
 public static bool InitiateDrag <T>(this ImGui gui, Rect moveHandle, Rect contents, T index, SchemeColor backgroundColor = SchemeColor.PureBackground)
 {
     if (gui.action == ImGuiAction.MouseDown)
     {
         gui.ConsumeMouseDown(moveHandle);
     }
     if (gui.ShouldEnterDrag(moveHandle) || (gui.action == ImGuiAction.Build && gui.IsDragging(index)))
     {
         gui.SetDraggingArea(contents, index, backgroundColor);
         return(true);
     }
     return(false);
 }