Added Sprite::getTexture where the texture can be modified

0.8
Bruno Van de Velde 2017-01-22 01:29:52 +01:00
parent 2e9eca5f6a
commit d629a01d58
2 changed files with 16 additions and 0 deletions

View File

@ -75,6 +75,15 @@ namespace tgui
const Texture& getTexture() const;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns a reference to the texture used by this sprite
///
/// @return Reference to the texture of the sprite
///
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Texture& getTexture();
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns whether a texture was set
///

View File

@ -55,6 +55,13 @@ namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Texture& Sprite::getTexture()
{
return m_texture;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool Sprite::isSet() const
{
return m_texture.getData() != nullptr;