Open
Description
While working on manager classes, it is useful to group related properties, using the @export_group
(https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/gdscript_exports.html#grouping-exports) annotation.
However, at the moment, this annotation is not available for Kotlin. It'd be nice to have it!
@RegisterClass
class Simple : Node() {
@ExportGroup("Bonus Properties")
var bonusMultiplier: Double
var bonusPoints: Int
}