-
Lots of people have asked in Slack about where they should beef up on their front end skills. We might have to be careful about explicitly endorsing paid resources, but maybe we could start here with …
-
In helper.js the lat and lng variables in the createMapMarker function read as:
``` javascript
var lat = placeData.geometry.location.k;
var lon = placeData.geometry.location.B;
```
The problem is th…
-
move collision check logic out into separate function (i.e. checkCollision). impacts app.js and engine.js.
current collision check is in the player.update() function.