ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
SS-P8-EE
2
An unofficial spreadsheet 'editor frontend'
3
for writing short PICO8 programs on mobile,
4
by translation to Education Edition URLs.
5
6
What a weird hack! But it generally works.
7
(if you're on a computer, it's much easier to
8
install PICO8 or use pico-8-edu.com directly)
9
10
Usage:
11
* Make your own copy of this spreadsheet
12
* Edit the 'code' tab in the Google Sheets app
13
* Click the link to run your program on P8 EE
14
* Fix bugs, repeat
15
* Optional: draw sprites in the 'spr' tab
16
* Note: among many limitations, PICO8
17
'wide' characters are not yet supported.
18
19
More instructions, examples, known issues,
20
and future updates at:
21
https://github.com/icegoat9/ssp8ee
22
https://www.lexaloffle.com/bbs/?tid=147967
23
24
v0.5, @icegoat, 2025-03-21
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
99
100