windowResized();
EventCalled when the window is resized
function setup()
createWindow(500, 500);
end
function draw()
background(51)
end
function windowResized()
print('Resized!')
end
windowResized();
EventCalled when the window is resized
function setup()
createWindow(500, 500);
end
function draw()
background(51)
end
function windowResized()
print('Resized!')
end