A variant of UI.Button that doesn't use the layout system, and instead goes exactly where you put it. Text to display on the button and id for tracking element state. MUST be unique within current hierarchy. This is the top left corner of the UI element relative to the current Hierarchy. The layou
(string text, Vec3 topLeftCorner, Vec2 size)
| 514 | /// <returns>Will return true only on the first frame it is pressed! |
| 515 | /// </returns> |
| 516 | public static bool ButtonAt(string text, Vec3 topLeftCorner, Vec2 size) |
| 517 | => NativeAPI.ui_button_at_16(text, topLeftCorner, size); |
| 518 | |
| 519 | /// <summary>A pressable button accompanied by an image! The button |
| 520 | /// will expand to fit the text provided to it, horizontally. Text is |
no test coverage detected