igTreeNode() private method

private igTreeNode ( string str_label_id ) : bool
str_label_id string
return bool
Exemplo n.º 1
0
 public static unsafe bool TreeNode(string label)
 {
     fixed(byte *bytes = System.Text.Encoding.UTF8.GetBytes(label))
     {
         return(ImGuiNative.igTreeNode(bytes));
     }
 }
Exemplo n.º 2
0
 public static bool TreeNode(string label)
 {
     return(ImGuiNative.igTreeNode(label));
 }
Exemplo n.º 3
0
 public static bool TreeNode(string label)
 => ImGuiNative.igTreeNode(label);