 |
Blamite Game Engine - blam!
00388.06.24.23.2301.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 DragScalar(const char *label, ImGuiDataType data_type, void *v, float v_speed, const void *v_min=NULL, const void *v_max=NULL, const char *format=NULL, float power=1.0f)
Definition: imgui_widgets.cpp:2055
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
@ ImGuiDataType_S64
Definition: imgui.h:916
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
@ ImGuiDataType_S16
Definition: imgui.h:912
Add a fourth parameter to bake specific font ranges NULL
Definition: README.txt:57
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 InputScalar(const char *label, ImGuiDataType data_type, void *v, const void *step=NULL, const void *step_fast=NULL, const char *format=NULL, ImGuiInputTextFlags flags=0)
Definition: imgui_widgets.cpp:2868
IMGUI_API bool DragScalarN(const char *label, ImGuiDataType data_type, void *v, int components, float v_speed, const void *v_min=NULL, const void *v_max=NULL, const char *format=NULL, float power=1.0f)
Definition: imgui_widgets.cpp:2129
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
@ ImGuiInputTextFlags_CharsHexadecimal
Definition: imgui.h:756