Extending ScriptGlue now possible

This commit is contained in:
Simon Lübeß
2025-07-27 17:43:00 +02:00
parent 566d39d928
commit 72e87ee9ad
4 changed files with 64 additions and 52 deletions
+1 -3
View File
@@ -77,9 +77,7 @@ public static class ImGuiExtension
public static bool ShowAssetDropTarget(ref UUID uuid)
{
// TODO: !!!
// return ScriptGlue.ImGuiExtension_ShowAssetDropTarget(ref uuid);
return false;
return ScriptGlue.ImGuiExtension_ShowAssetDropTarget(ref uuid);
}
public static bool Checkbox2(string label, ref bool2 value) => CheckboxN(2, label, ref value.X);