Open
Description
key is a char
, and CODED is a int
, I don't know how to compare those two things
fillVal <- 126
draw <- function() {
fill(fillVal)
rect(25, 25, 50, 50)
}
keyPressed <- function() {
print(key)
print(CODED)
if (key == CODED) {
if (keyCode == UP) {
fillVal = 255
} else if (keyCode == DOWN) {
fillVal = 0
}
} else {
fillVal = 126
}
}