GodotTable

by sericaer

32

godot_table

A table control which can be sort and dynamic update for Godot

Usage

create table in editor

image

select row

image

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 });
    }

known issues

no real-time preview for color changes

demo

[https://github.com/sericaer/godot_table_demo]:

Version

0.2.0

Engine

3.0

Category

2D Tools

Download

Version0.2.0
Download

Support

If you need help or have questions about this plugin, please contact the author.

Contact Author