Added Sprite::getTexture where the texture can be modified
parent
2e9eca5f6a
commit
d629a01d58
|
@ -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
|
||||
///
|
||||
|
|
|
@ -55,6 +55,13 @@ namespace tgui
|
|||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Texture& Sprite::getTexture()
|
||||
{
|
||||
return m_texture;
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool Sprite::isSet() const
|
||||
{
|
||||
return m_texture.getData() != nullptr;
|
||||
|
|
Loading…
Reference in New Issue