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
A plugin to access CSV files in dictionary form, which can be used to modify translation files and data files in code.## Usage### Load CSV Datavar data = CSVAccess.load_csv_data("res://demo/test.csv")### Modify CSV Datadata["key_1"]["en"] = str("key_1_ ", randi())data["key_2"] = {en = str("key_2_ ", randi())}data["key_3"] = {"en": str("key_3_ ", randi())}### Save CSV DataCSVAccess.save_csv_data("res://demo/test.csv", data)
A plugin to access CSV files in dictionary form, which can be used to modify translation files and data files in code.
## Usage
### Load CSV Data
var data = CSVAccess.load_csv_data("res://demo/test.csv")
### Modify CSV Data
data["key_1"]["en"] = str("key_1_ ", randi())
data["key_2"] = {en = str("key_2_ ", randi())}
data["key_3"] = {"en": str("key_3_ ", randi())}
### Save CSV Data
CSVAccess.save_csv_data("res://demo/test.csv", data)
Reviews
Quick Information
A plugin to access CSV files in dictionary form, which can be used to modify translation files and data files in code.## Usage### Load CSV Datavar data = CSVAccess.load_csv_data("res://demo/test.csv")### Modify CSV Datadata["key_1"]["en"] = str("key_1_ ", randi())data["key_2"] = {en = str("key_2_ ", randi())}data["key_3"] = {"en": str("key_3_ ", randi())}### Save CSV DataCSVAccess.save_csv_data("res://demo/test.csv", data)