new Camera(x, y, zoom)
Look at the Camera reference pages before reading these docs.
A `camera` object is created automatically when p5play loads.
Currently, there can only be one camera per p5.js instance.
A camera facilitates scrolling and zooming for scenes extending beyond
the canvas. A camera has a position, a zoom factor, and the mouse
coordinates relative to the view.
The camera is automatically created on the first draw cycle.
In p5.js terms the camera wraps the whole drawing cycle in a
transformation matrix but it can be disable anytime during the draw
cycle for example to draw interface elements in an absolute position.
Parameters:
Name | Type | Description |
---|---|---|
x |
Number
|
Initial x coordinate |
y |
Number
|
Initial y coordinate |
zoom |
Number
|
magnification |
Members
zoom :Number
Camera zoom.
A scale of 1 will be the normal size. Setting it to 2 will
make everything twice the size. .5 will make everything half
size.
Type:
-
Number
Methods
off()
Deactivates the camera.
The canvas will be drawn normally, ignoring the camera's position
and scale until camera.on() is called
on()
Activates the camera.
The canvas will be drawn according to the camera position and scale until
camera.off() is called