SFML community forums

General => Feature requests => Topic started by: MrOnlineCoder on September 14, 2016, 10:17:24 pm

Title: Add center() method for Sprite
Post by: MrOnlineCoder on September 14, 2016, 10:17:24 pm
Hello. Very often I need to center sprite relative to some position. So I have to do something like
sprite.setPosition(newX-sprite.getGlobalBounds().width/2, newY-sprite.getGlobalBounds().height/2)

but it will be very useful to do something this:
sprite.center(newX, newY);
 

Thanks.
Title: Re: Add center() method for Sprite
Post by: Hapax on September 14, 2016, 11:34:36 pm
Probably best not to use global bounds to move a position; it will move it every time this is called.

What's wrong with using this:
sprite.setOrigin(sprite.getLocalBounds().width / 2.f, sprite.getLocalBounds().height / 2.f);
just once and then every time you set its position, it'll be centred.

If you use Plinth (https://github.com/Hapaxia/Plinth) (I do all the time!), you can use its SFML Anchors (https://github.com/Hapaxia/Plinth/blob/master/Plinth/Sfml/Anchor.hpp). For example:
sprite.setOrigin(pl::Anchor::Local::getCenter(sprite));
Title: Re: Add center() method for Sprite
Post by: MrOnlineCoder on September 15, 2016, 06:54:59 am
Thanks for reply, it helped.
Title: Re: Add center() method for Sprite
Post by: Hapax on September 16, 2016, 11:22:05 pm
You are welcome. Glad you found it useful :)