From 7a6a0eadf0e3ac1b0e7f4ca82e93ff28dcdad4be Mon Sep 17 00:00:00 2001 From: Brandon Calabro Date: Wed, 7 May 2025 14:03:10 -0500 Subject: [PATCH] Update base_class.java with JNI call getBuildoutAreaRect() --- .../sys.server/compiled/game/script/base_class.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sku.0/sys.server/compiled/game/script/base_class.java b/sku.0/sys.server/compiled/game/script/base_class.java index 9b5a41d64..b1183dba5 100755 --- a/sku.0/sys.server/compiled/game/script/base_class.java +++ b/sku.0/sys.server/compiled/game/script/base_class.java @@ -22791,6 +22791,18 @@ public class base_class */ public static native float[] getBuildoutAreaSizeAndCenter( float x, float z, String sceneId, boolean ignoreInternal, boolean allowComposite ); + /** + * Return the buildout area rectangle coords + * (x,z) position. + *

+ * returns: float array or null + * float[0] -> width + * float[1] -> height + * float[2] -> centerX + * float[3] -> centerZ + */ + public static native float[] getBuildoutAreaRect(float x, float z, String sceneId, boolean allowComposite); + /** * Notify the mount that its wearable-related visuals must be updated. *