GodotTable

An asset by sericaer
The page banner background of a mountain and forest
GodotTable hero image

Quick Information

0 ratings
GodotTable icon image
sericaer
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

README image

select row

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

demo

[https://github.com/sericaer/godot_table_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

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
GodotTable icon image
sericaer
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

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers