protected trail values (#7656)

This commit is contained in:
MEEPofFaith
2022-10-04 12:28:17 -07:00
committed by GitHub
parent 8f404869b2
commit cac946b0e1

View File

@@ -9,8 +9,8 @@ import arc.util.*;
public class Trail{
public int length;
private final FloatSeq points;
private float lastX = -1, lastY = -1, lastAngle = -1, counter = 0f, lastW = 0f;
protected final FloatSeq points;
protected float lastX = -1, lastY = -1, lastAngle = -1, counter = 0f, lastW = 0f;
public Trail(int length){
this.length = length;