lua-toml icon indicating copy to clipboard operation
lua-toml copied to clipboard

Table with flat table saves in hashmap format

Open LaineZ opened this issue 5 years ago • 0 comments

Excepted:

particle_color_graph = [[1.0, 1.0, 1.0, 0.3], [0.0, 0.0, 0.0, 0.0]]

Got:

[[particle_color_graph]]
1 = 1
2 = 1
3 = 1
4 = 0.3
[[particle_color_graph]]
1 = 0
2 = 0
3 = 0
4 = 0

Table:

particle_color_graph = { { 1, 1, 1, 0.3 }, { 0, 0, 0, 0 } }

LaineZ avatar Sep 11 '20 18:09 LaineZ