 |
Blamite Game Engine - blam!
00346.12.11.21.0529.blamite
The core library for the Blamite Game Engine.
|
Go to the documentation of this file.
7 IMGUI_API bool DragShort(
const char* label,
short* v,
float v_speed = 1.0f,
short v_min = 0,
short v_max = 0,
const char* format =
"%d");
8 IMGUI_API bool DragShort2(
const char* label,
short v[2],
float v_speed = 1.0f,
short v_min = 0,
short v_max = 0,
const char* format =
"%d");
9 IMGUI_API bool DragShort3(
const char* label,
short v[3],
float v_speed = 1.0f,
short v_min = 0,
short v_max = 0,
const char* format =
"%d");
10 IMGUI_API bool DragShort4(
const char* label,
short v[4],
float v_speed = 1.0f,
short v_min = 0,
short v_max = 0,
const char* format =
"%d");
12 IMGUI_API bool DragLong(
const char* label,
long* v,
float v_speed = 1.0f,
long v_min = 0,
long v_max = 0,
const char* format =
"%d");
13 IMGUI_API bool DragLong2(
const char* label,
long v[2],
float v_speed = 1.0f,
long v_min = 0,
long v_max = 0,
const char* format =
"%d");
14 IMGUI_API bool DragLong3(
const char* label,
long v[3],
float v_speed = 1.0f,
long v_min = 0,
long v_max = 0,
const char* format =
"%d");
15 IMGUI_API bool DragLong4(
const char* label,
long v[4],
float v_speed = 1.0f,
long v_min = 0,
long v_max = 0,
const char* format =
"%d");
IMGUI_API bool DragLong2(const char *label, long v[2], float v_speed=1.0f, long v_min=0, long v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:30
IMGUI_API bool DragLong4(const char *label, long v[4], float v_speed=1.0f, long v_min=0, long v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:40
IMGUI_API bool DragShort3(const char *label, short v[3], float v_speed=1.0f, short v_min=0, short v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:13
IMGUI_API bool DragShort2(const char *label, short v[2], float v_speed=1.0f, short v_min=0, short v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:8
IMGUI_API bool DragShort4(const char *label, short v[4], float v_speed=1.0f, short v_min=0, short v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:18
#define IMGUI_API
Definition: imgui.h:57
int ImGuiInputTextFlags
Definition: imgui.h:150
IMGUI_API bool DragLong(const char *label, long *v, float v_speed=1.0f, long v_min=0, long v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:25
Definition: imgui_extensions.h:5
IMGUI_API bool InputLong(const char *label, long *v, long step, long step_fast, ImGuiInputTextFlags flags)
Definition: imgui_extensions.cpp:52
IMGUI_API bool DragLong3(const char *label, long v[3], float v_speed=1.0f, long v_min=0, long v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:35
IMGUI_API bool InputShort(const char *label, short *v, short step, short step_fast, ImGuiInputTextFlags flags)
Definition: imgui_extensions.cpp:46
IMGUI_API bool DragShort(const char *label, short *v, float v_speed=1.0f, short v_min=0, short v_max=0, const char *format="%d")
Definition: imgui_extensions.cpp:3