Testing new quadtree

This commit is contained in:
Anuken
2020-02-10 11:29:58 -05:00
parent 81990cf16c
commit 86d5842868
3 changed files with 352 additions and 5 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ abstract class VelComp implements Posc{
@MethodPriority(-1)
@Override
public void update(){
move(vel.x, vel.y);
move(vel.x * Time.delta(), vel.y * Time.delta());
vel.scl(1f - drag * Time.delta());
}