igBeginChildEx() 개인적인 메소드

private igBeginChildEx ( uint id, Vector2 size, bool border, WindowFlags extra_flags ) : bool
id uint
size Vector2
border bool
extra_flags WindowFlags
리턴 bool
예제 #1
0
 public static bool BeginChild(uint id, Vector2 size, bool border, WindowFlags flags)
 {
     return(ImGuiNative.igBeginChildEx(id, size, border, flags));
 }
예제 #2
0
파일: ImGui.cs 프로젝트: se5a/ImGuiCS
 public static bool BeginChild(uint id, ImVec2 size, bool border, ImGuiWindowFlags flags)
 => ImGuiNative.igBeginChildEx(id, size, border, flags);