How can I use the @editable attributes with Tooltips and Categories in the Verse Module?

I’ve noticed several attractive features in the verse module. The editable attribute includes Tooltips and Categories . The editable_number attribute requires a type as a parameter and allows for MinValue and MaxValue settings. There are many more features I’m interested in. Are these features currently available for use? If so, how can I use them?

This is available to use already, I have started implementing it in my code as needed.

The only reference to the syntax I’ve seen is during the Verse Update | GDC 2024 talk at 3:40

TowerAttackCategory<localizes>:message = "Tower Attack"
TimeBetweenAttacksTip<localizes>:message = "The amount of time between each attack."

@editable_slider(float):
    Categories := array{TowerAttackCategory}
    ToolTip := TimeBetweenAttacksTip
    MinValue := option{0.5}
    MaxValue := option{10.0}
TimeBetweenAttacks:float = 3.0

edit: moved the link to the bottom of the post

2 Likes

Thank You, I need to re watch the video