Beispiel #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);
 }
Beispiel #2
0
 public static extern bool igInputInt2(string label, Int2 v, InputTextFlags extra_flags);
Beispiel #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);
 }
Beispiel #4
0
 public static extern bool igSliderInt2(string label, ref Int2 v, int v_min, int v_max, string display_format);
Beispiel #5
0
 public static extern bool igDragInt2(string label, ref Int2 v, float v_speed, int v_min, int v_max, string display_format);
Beispiel #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);
Beispiel #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);
Beispiel #8
0
 public static extern bool igInputInt2(string label, Int2 v, InputTextFlags extra_flags);
Beispiel #9
0
 public static extern bool igDragInt2(string label, ref Int2 v, float v_speed, int v_min, int v_max, string display_format);
Beispiel #10
0
 public static extern bool igSliderInt2(string label, ref Int2 v, int v_min, int v_max, string display_format);