Click here to Skip to main content
15,893,622 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more: , +
How to move this line on touch?

final Line line = new Line((this.CAMERA_WIDTH/2) - 150, (this.CAMERA_HEIGHT/2) + 200, (this.CAMERA_WIDTH/2) - 200, (this.CAMERA_HEIGHT/2) + 200, 5, this.getVertexBufferObjectManager());
Posted
Comments
ridoy 21-Aug-12 2:49am    
Question isn't clear..do you want to draw a line by touch or want to move that line?If that what type of movement?

1 solution

This line is never going to move, because it's location is hard coded. If you want it to move when someone touches it, you need to draw it using variables, and change those values based on input.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900