├── .gitignore ├── CSVTest ├── 2019 Fall Colloquium for ITS_original.csv ├── 2019 Fall Colloquium for ITS_original.csv.import ├── addons │ ├── godot-plugin-refresher │ │ ├── icons │ │ │ ├── icon_reload_small.svg │ │ │ └── icon_reload_small.svg.import │ │ ├── plugin.cfg │ │ ├── plugin_refresher.gd │ │ ├── plugin_refresher.tscn │ │ └── plugin_refresher_plugin.gd │ └── godot-spreadsheet │ │ ├── plugin.cfg │ │ ├── plugin.gd │ │ ├── spreadsheet.gd │ │ └── spreadsheet_import_plugin.gd ├── default_env.tres ├── icon.png ├── icon.png.import ├── line_edit.gd ├── line_edit.tscn ├── project.godot ├── test.gd └── utility_test.tscn ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /CSVTest/2019 Fall Colloquium for ITS_original.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/2019 Fall Colloquium for ITS_original.csv -------------------------------------------------------------------------------- /CSVTest/2019 Fall Colloquium for ITS_original.csv.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/2019 Fall Colloquium for ITS_original.csv.import -------------------------------------------------------------------------------- /CSVTest/addons/godot-plugin-refresher/icons/icon_reload_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-plugin-refresher/icons/icon_reload_small.svg -------------------------------------------------------------------------------- /CSVTest/addons/godot-plugin-refresher/icons/icon_reload_small.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-plugin-refresher/icons/icon_reload_small.svg.import -------------------------------------------------------------------------------- /CSVTest/addons/godot-plugin-refresher/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-plugin-refresher/plugin.cfg -------------------------------------------------------------------------------- /CSVTest/addons/godot-plugin-refresher/plugin_refresher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-plugin-refresher/plugin_refresher.gd -------------------------------------------------------------------------------- /CSVTest/addons/godot-plugin-refresher/plugin_refresher.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-plugin-refresher/plugin_refresher.tscn -------------------------------------------------------------------------------- /CSVTest/addons/godot-plugin-refresher/plugin_refresher_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-plugin-refresher/plugin_refresher_plugin.gd -------------------------------------------------------------------------------- /CSVTest/addons/godot-spreadsheet/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-spreadsheet/plugin.cfg -------------------------------------------------------------------------------- /CSVTest/addons/godot-spreadsheet/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-spreadsheet/plugin.gd -------------------------------------------------------------------------------- /CSVTest/addons/godot-spreadsheet/spreadsheet.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-spreadsheet/spreadsheet.gd -------------------------------------------------------------------------------- /CSVTest/addons/godot-spreadsheet/spreadsheet_import_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/addons/godot-spreadsheet/spreadsheet_import_plugin.gd -------------------------------------------------------------------------------- /CSVTest/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/default_env.tres -------------------------------------------------------------------------------- /CSVTest/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/icon.png -------------------------------------------------------------------------------- /CSVTest/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/icon.png.import -------------------------------------------------------------------------------- /CSVTest/line_edit.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/line_edit.gd -------------------------------------------------------------------------------- /CSVTest/line_edit.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/line_edit.tscn -------------------------------------------------------------------------------- /CSVTest/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/project.godot -------------------------------------------------------------------------------- /CSVTest/test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/test.gd -------------------------------------------------------------------------------- /CSVTest/utility_test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/CSVTest/utility_test.tscn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnationsdev/godot-spreadsheet/HEAD/README.md --------------------------------------------------------------------------------