Exemplo n.º 1
0
 public static bool DragInt2(string label, ref Int2 value, float speed, int minValue, int maxValue, string displayText)
 {
     return ImGuiNative.igDragInt2(label, ref value, speed, minValue, maxValue, displayText);
 }
Exemplo n.º 2
0
 public static extern bool igInputInt2(string label, Int2 v, InputTextFlags extra_flags);
Exemplo n.º 3
0
 public static bool SliderInt2(string label, ref Int2 value, int min, int max, string displayText)
 {
     return ImGuiNative.igSliderInt2(label, ref value, min, max, displayText);
 }
Exemplo n.º 4
0
 public static extern bool igSliderInt2(string label, ref Int2 v, int v_min, int v_max, string display_format);
Exemplo n.º 5
0
 public static extern bool igDragInt2(string label, ref Int2 v, float v_speed, int v_min, int v_max, string display_format);
Exemplo n.º 6
0
 public static bool DragInt2(string label, ref Int2 value, float speed, int minValue, int maxValue, string displayText)
 => ImGuiNative.igDragInt2(label, ref value, speed, minValue, maxValue, displayText);
Exemplo n.º 7
0
 public static bool SliderInt2(string label, ref Int2 value, int min, int max, string displayText)
 => ImGuiNative.igSliderInt2(label, ref value, min, max, displayText);
Exemplo n.º 8
0
 public static extern bool igInputInt2(string label, Int2 v, InputTextFlags extra_flags);
Exemplo n.º 9
0
 public static extern bool igDragInt2(string label, ref Int2 v, float v_speed, int v_min, int v_max, string display_format);
Exemplo n.º 10
0
 public static extern bool igSliderInt2(string label, ref Int2 v, int v_min, int v_max, string display_format);