Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
GodotTable
A table control which can be sort and dynamic update1. Create table in editor2. Select table row3. Dynamic change data
Supported Engine Version
3.0
Version String
0.2.0
License Version
MIT
Support Level
community
Modified Date
3 years ago
Git URL
Issue URL
godot_table
A table control which can be sort and dynamic update for Godot
Usage
create table in editor
select row
dynamic change data
gdscript
func _on_Button_pressed():
$Table.set_rows([['100', '200'], ['300', '400']])
C#
private void _on_Button_pressed()
{
var param = new Godot.Collections.Array() { new Godot.Collections.Array() { "100", "200" }, new Godot.Collections.Array() { "400", "300" } };
GetNode("Table").Call("set_rows", new object[] { param });
}
demo
A table control which can be sort and dynamic update
1. Create table in editor
2. Select table row
3. Dynamic change data
Reviews
Quick Information
GodotTable
A table control which can be sort and dynamic update1. Create table in editor2. Select table row3. Dynamic change data
Supported Engine Version
3.0
Version String
0.2.0
License Version
MIT
Support Level
community
Modified Date
3 years ago
Git URL
Issue URL