sfml
Here are 1,015 public repositories matching this topic...
Cleanup the Cmake
The CMakeLists files of this project is kinda messy, mostly due to my limited understanding of the topic.
So they definitely need to be cleaned up at some point
Here's the list of requirements: https://bincrafters.readthedocs.io/en/latest/contributing_to_packages/package_guidelines_faq.html
I'm not a Conan user, so everyone who uses Conan is encouraged to go through the whole process and contribute, given that we now support Conan.
void Bone::setVisible(bool value)
{
if (_visible == value)
{
return;
}
_visible = value;
for (const auto & slot : _armature->getSlots())
{
if (slot->getParent() == this)
{
slot->_updateVisible();
}
}
}
void Slot::setVisible(bool value)
{
if (_visible == value)
{
return;
}
_vi
When setting a fixed width for a label using SetRequisition, the label will not be centered, but will be left justified.
Brew code snippet from Label.cpp:
22 if( !label->GetLineWrap() ) {
23 // Calculate alignment when word wrap is disabled.
24 sf::Vector2f avail_space( label->GetAllocation().width - label->GetRequisition().x, label->GetAllocation().height - label->GetRequis-
Updated
Jun 29, 2020 - C++
-
Updated
Jun 10, 2020 - Crystal
ÖbEngine currently uses a homemade argument parser which isn't really well-made nor feature-complete.
Here is a list of possible candidates :
Would it be possible to add the documentation with it? Maybe some markdown files?
maybe with the help of this tool: doxygen xml to markdown?
Fails, as described here: glfw/glfw#876
- Operating System (name & version): OSX 10.12
- Compiler (name & version): clang
- Target renderer: OpenGL Core
- cmake command-line used:
-GXcode -DRENDER_OPENGL_CORE=ON
-
Updated
Jul 16, 2018 - C++
While I try to keep the wiki as up to date as possible it is likely that the information is incomplete based on my personal assumptions of the reader's knowledge of the library, or possibly because it is out of date. Wiki pages are currently public in the hope that users will submit any missing information they might find or even add their own pages. Alternatively I encourage people to comment or
-
Updated
Apr 8, 2018 - C++
The Color.__repr__() method returns a string with long property names 'red', 'green', 'blue' and 'alpha`, while the Color class has properties 'r', 'g', 'b', 'a'.
class Color:
def __repr__(self):
return "Color(red={0}, green={1}, blue={2}, alpha={3})".format(self.r, self.g, self.b, self.a)
According to the [Python documentation](https://docs.python.org/3.5/reference/dat
-
Updated
Jun 15, 2020 - C++
According to the SFML 2.4 documentation, the TcpSocket class should have a send method for raw data that returns the number of bytes sent as an out parameter.
In non-blocking mode, it may not be the case that a TcpSocket sent everything, which a developer would need to know.
-
Updated
Jan 28, 2017 - C++
Show a friendly message when the required ggpack files are missing
-
Updated
Jun 22, 2020 - Nim
-
Updated
Oct 29, 2018
64 bit Main Example is not rendered properly (compiled to x86_64 target with FPC/Lazarus svn trunk).
32 bit PasSFML Main Example works properly.
Improve this page
Add a description, image, and links to the sfml topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the sfml topic, visit your repo's landing page and select "manage topics."

The documentation does not have a key code for the numberpad dot. Is this intentional? It comes up as
Unknownwhen it is pressed. The same is true for the numlock and capslock key although this kinda makes sense.Shouldn't there be a
NumpadDotkey code?