0 Members and 1 Guest are viewing this topic.
It looks like you should read more about C++, because accessing the X and Y components is really straightforward.sf::Vector2f vector;float x = vector.x;float y = vector.y;
What exactly is confusing?