-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheart-plan.json
More file actions
98 lines (98 loc) · 1.99 KB
/
Copy pathheart-plan.json
File metadata and controls
98 lines (98 loc) · 1.99 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"steps": [
{
"command": "project.create",
"args": {
"width": 8,
"height": 8,
"output": "examples-output/heart/heart.piskel",
"name": "heart"
}
},
{
"command": "draw.pixel",
"args": {
"project": "examples-output/heart/heart.piskel",
"x": 2,
"y": 1,
"color": "#ff0000"
}
},
{
"command": "draw.pixel",
"args": {
"project": "examples-output/heart/heart.piskel",
"x": 5,
"y": 1,
"color": "#ff0000"
}
},
{
"command": "draw.rect",
"args": {
"project": "examples-output/heart/heart.piskel",
"x1": 1,
"y1": 2,
"x2": 6,
"y2": 4,
"color": "#ff0000",
"filled": true
}
},
{
"command": "draw.rect",
"args": {
"project": "examples-output/heart/heart.piskel",
"x1": 2,
"y1": 4,
"x2": 5,
"y2": 5,
"color": "#ff0000",
"filled": true
}
},
{
"command": "draw.line",
"args": {
"project": "examples-output/heart/heart.piskel",
"x1": 1,
"y1": 5,
"x2": 3,
"y2": 7,
"color": "#ff0000"
}
},
{
"command": "draw.line",
"args": {
"project": "examples-output/heart/heart.piskel",
"x1": 6,
"y1": 5,
"x2": 4,
"y2": 7,
"color": "#ff0000"
}
},
{
"command": "export.png",
"args": {
"project": "examples-output/heart/heart.piskel",
"output": "examples-output/heart/heart.png"
}
},
{
"command": "export.gif",
"args": {
"project": "examples-output/heart/heart.piskel",
"output": "examples-output/heart/heart.gif"
}
},
{
"command": "export.frames",
"args": {
"project": "examples-output/heart/heart.piskel",
"output-dir": "examples-output/heart/frames"
}
}
]
}