this is my constructor
Timeline(int score, float poX, float posY)
tl = new ArrayList<Timeline>();
tl.add(new Timeline(20, 50, 30));
instead of resetting the whole timelime like below
tl.set(0, new Timeline(20, 50, 50));
i would like to set the variable posY maybe something like
tl.set(0, new Timeline.posY = 50);
i know it's wrong, but just a rough idea on what i want
thx
1