Add todo message

This commit is contained in:
Starbeamrainbowlabs 2016-06-07 14:22:38 +01:00
parent 9346829551
commit e7750c891c
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class HillSet
this.controlPoints[this.controlPoints.length - 2].y = this.size.y;
this.hillLine = new SmoothLine();
// TODO: Add a few points before this to make th smooth line join up upon reset correctly
var prevPoints = [];
for(let point of this.controlPoints)
prevPoints.push(point.clone().subtract(new Vector(this.size.x, 0)));
@ -56,6 +56,7 @@ class HillSet
{
this.pos.x += this.speed * dt;
if(this.pos.x >= this.size.x)
// console.log("Reset");
this.pos.x = 0;
}