I have a sprite that when reaches a certain position it gets removed:
if(sprite.getY()>=700){
enemyIterator.remove();
Pools.free(sprite);
}
I wan't to save the last position of the sprite before it gets removed,I tried sprite.getX()
and sprite.getY()
but those are only usable while the sprite is in the game.
Based on provided additional information. Sprite methods
getX()
andgetY()
returns float values. So you can assign values returned by these methods to variables of typefloat
for later use.