xxxxxxxxxx
12
// creating a camera object to make camera movement easier
class Camera {
constructor() {
// distance between the camera and the virtual player (invisible)
this.distance = 400;
}
// creates the camera and determines the position, where the camera is looking at and at what orientation.
make() {
camera(this.distance * cos(player.angle) + player.pos.x, this.distance * sin(player.angle) + player.pos.y, this.distance/2, player.pos.x, player.pos.y, player.pos.z, 0, 0, -1);
}
}