Back to project page Ready-Set-Rogue.
The source code is released under:
GNU General Public License
If you think the Android project Ready-Set-Rogue listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.warsheep.scamp.components; //from w w w .j ava 2s.co m import com.badlogic.ashley.core.Component; import com.badlogic.gdx.math.Interpolation; import com.badlogic.gdx.math.Vector3; import java.util.ArrayDeque; import java.util.Queue; public class MovementComponent extends Component { public Queue<Vector3> target = new ArrayDeque<>(); public final Interpolation interpolation = Interpolation.linear; public float alpha = 0.0f; public float timeSinceMove = 0.0f; }