21 lines
409 B
Lua
21 lines
409 B
Lua
-- Global config table
|
|
Config = {
|
|
-- Radius of each grid point
|
|
pointRadius = 7,
|
|
-- Radius of line start/end point
|
|
linePointRadius = 10,
|
|
-- Size of each grid cell
|
|
cellSize = 30,
|
|
|
|
-- love2d line drawing settings
|
|
lineStyle = "smooth",
|
|
lineWidth = 5
|
|
}
|
|
|
|
-- Colors table
|
|
Color = {
|
|
white = { 1, 1, 1 },
|
|
red = { 1, 0, 0 },
|
|
green = { 0, 1, 0 },
|
|
blue = { 0, 0, 1 }
|
|
}
|