Font size
WorksheetsPICO8/LUA QUIZ
Total questions: 15
Worksheet time: 11mins
What are the three core functions of PICO8?
_init, _update, _draw
_start, _update, _print
_start, _update, _draw
_init, _update, _print
What is a "variable" in Japanese?
(a)
What is a "function" in Japanese?
(a)
What is a "parameter" (used in functions) in Japanese?
(a)
In this picture, A and B are...? (変数、関数、引数のどれ?)
(a)
In this code, I created a function (関数) to return the sum (合計) of two parameters (引数).
Q: How can I print the sum of A and B to the screen? (コードを書いてください)
HINT: PRINT( (a) )
Where can I create drawings of characters and items?
Where can I write code?
Where can I draw a map?
Where can I create sound effects?
Where can I create music?
What function in PICO8 can we use to check if a button is pressed?
(a)
PLAYER={}
What kind of data is PLAYER?
table
variable
function
parameter
Which code shows:
1) create a new table called "P"
2) add an X coordinate
3) add a Y coordinate
P.X=2
P.Y=4
P={}
X=2
Y=4
P= NEW TABLE
X=2
Y=4
P={}
P.X=2
P.Y=4
Write code to show adding a value of 1 to a variable X
(a)
