Skip to content

Commit

Permalink
moved worker folder
Browse files Browse the repository at this point in the history
  • Loading branch information
techmatt101 committed Nov 26, 2014
1 parent 8bba471 commit ab22f40
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/core/ai/ZombieAI.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
var aiWorker = new Worker("core/workers/ai.js"); //TODO: UBER HACK!!!!
var aiWorker = new Worker("workers/ai.js"); //TODO: UBER HACK!!!!

class ZombieAI implements IAI {
private _zombie : Entity;
private _player : Entity;

private _canSeePlayer = false;

//private _worker = new Worker("core/workers/ai.js");
//private _worker = new Worker("workers/ai.js");
private _workerWorking = false;

private _headingLocation = new Vector(40,40);
Expand Down
2 changes: 1 addition & 1 deletion src/core/render/LightFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class LightFilter implements IUpdate, IFilter {
private _lightSource = new Vector(0, 0);
private _polygons = [];

private _worker = new Worker("core/workers/lighting.js");
private _worker = new Worker("workers/lighting.js");
private _workerWorking = false;

private _visionImage : HTMLImageElement;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ab22f40

Please sign in to comment.