Angry Birds (Part 1) (Sketch.js)

Angry Birds Game

(Part I)



Sketch.js:

const Engine = Matter.Engine;
const World = Matter.World;
const Bodies = Matter.Bodies;

var engine, world;

var box1;

function setup() {
  createCanvas(400400);

  engine = Engine.create();
  world = engine.world;

  box1 = new Box(2001505050'yellow');
  box2 = new Box(2302050100);

  ground = new Ground(20039040020);
}

function draw() {
  background(0);

  Engine.update(engine);

  box1.display();
  box2.display();

  ground.display();
}



 

0 Comments: