-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_tile.lua
31 lines (31 loc) · 921 Bytes
/
new_tile.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
do
app.transaction(
function()
app.useTool {
tool = 'line',
color = Color(255, 255, 255),
points = {Point(63, 1), Point(0, 32)}
}
app.useTool {
tool = 'line',
color = Color(255, 255, 255),
points = {Point(0, 32), Point(63, 63)}
}
app.useTool {
tool = 'line',
color = Color(255, 255, 255),
points = {Point(64, 63), Point(127, 32)}
}
app.useTool {
tool = 'line',
color = Color(255, 255, 255),
points = {Point(127, 32), Point(64, 1)}
}
app.useTool {
tool = 'paint_bucket',
color = Color(255, 255, 255),
points = {Point(64, 32)}
}
end
)
end