<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Mantra.js Gallery Page - frames per-second</title>
  <script src="https://yantra.gg/mantra.js"></script>
<script src="https://yantra.gg/worlds.mantra.js"></script>
</head>
<body>
<script>
let game = new MANTRA.Game({
  graphics: ['css'], // array enum, 'babylon', 'phaser', 'css', 'three'
  /*
    fps - Frames per second can be set at construction
  */
  fps: 20,
  defaultMovement: true,
  plugins: ['Bullet', 'Boomerang'],
});

game.start(function () {
  game.createPlayer();</script>
</body>
</html>