Half-baked state. Most of the UI is mostly done, but the integration with Grist (or any other data provider) is still missing.
6 lines
86 B
GDScript
6 lines
86 B
GDScript
extends OptionButton
|
|
|
|
func _ready() -> void:
|
|
for i in range(100):
|
|
add_item(str(i))
|