Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,12 @@ update: function() {
}
```

* add the Lighting Draw calls to the impact.js lib/impact/game.js around the entitydrawing ( or somewhere else )
* add the Lighting Draw calls to your main.js

```
draw: function() {
...
drawEntities: function() {
this.lightManager.drawLightMap();
this.drawEntities();
this.parent();
this.lightManager.drawShadowMap();
}
```
Expand Down