Skip to content

Commit

Permalink
Fix Sprite3d Example Textures
Browse files Browse the repository at this point in the history
fixes the temporary texture passed to Sprite 3D to use the new empty parameter function call of Sprite 3D.
  • Loading branch information
Hapaxia committed Feb 19, 2025
1 parent 45047d5 commit 5162ccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/sprite3dExample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ int main()
}
else
{
sprite3d.setTexture(sf::Texture());
sprite3d.setBackTexture(sf::Texture());
sprite3d.setTexture();
sprite3d.setBackTexture();
}
}
}
Expand Down

0 comments on commit 5162ccd

Please sign in to comment.