SetScrollHere()

internals
Eric Mellino 8 years ago
parent cd275b91b5
commit a44f4a77e8
  1. 10
      src/ImGui.NET/ImGui.cs

@ -987,5 +987,15 @@ namespace ImGuiNET
{
ImGuiNative.igSetWindowFontScale(scale);
}
public static void SetScrollHere()
{
ImGuiNative.igSetScrollHere();
}
public static void SetScrollHere(float centerYRatio)
{
ImGuiNative.igSetScrollHere(centerYRatio);
}
}
}

Loading…
Cancel
Save