Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BackgammonFan

Pages: [1]
1
Graphics / Re: Better way to handle sprites
« on: July 19, 2024, 05:04:29 pm »
Thank you so much for the help  ;D

2
Graphics / Better way to handle sprites
« on: July 17, 2024, 10:14:33 pm »
Hi! I am working on making a backgammon game, and am currently making my sprites like this
sf::Texture boardTexture;
sf::Sprite board;
board.setTexture(boardTexture);
board.setScale(3,3);
board.setPosition(100,200);

This is not that bad with one sprite, but with a game like backgammon I will need way more!
There must be a better way to do this, right?

Pages: [1]