Update base_class.java with JNI call getBuildoutAreaRect()

This commit is contained in:
Brandon Calabro
2025-05-07 14:03:10 -05:00
committed by GitHub
parent 462f279b25
commit 7a6a0eadf0

View File

@@ -22791,6 +22791,18 @@ public class base_class
*/ */
public static native float[] getBuildoutAreaSizeAndCenter( float x, float z, String sceneId, boolean ignoreInternal, boolean allowComposite ); public static native float[] getBuildoutAreaSizeAndCenter( float x, float z, String sceneId, boolean ignoreInternal, boolean allowComposite );
/**
* Return the buildout area rectangle coords
* (x,z) position.
* <p>
* 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. * Notify the mount that its wearable-related visuals must be updated.
* *