Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Imgui Sfml | 877 | a month ago | 18 | mit | C++ | |||||
Dear ImGui backend for use with SFML | ||||||||||
Rust Sfml | 576 | 55 | 10 | 23 days ago | 16 | March 28, 2021 | 16 | other | Rust | |
SFML bindings for Rust | ||||||||||
Sfml.net | 429 | 5 months ago | 17 | other | C# | |||||
Official binding of SFML for .Net languages | ||||||||||
Crsfml | 321 | 5 months ago | 2 | zlib | Crystal | |||||
Crystal bindings to SFML multimedia/game library | ||||||||||
Csfml | 274 | a month ago | 8 | other | C | |||||
Official binding of SFML for C | ||||||||||
Python Sfml | 166 | 3 years ago | 44 | other | Python | |||||
Official binding of SFML for Python | ||||||||||
Dgame | 79 | 8 | 1 | 3 years ago | 27 | October 14, 2018 | other | HTML | ||
A 2D framework for the D programming Language | ||||||||||
Nim Csfml | 72 | 5 months ago | December 06, 2018 | zlib | Nim | |||||
Nim bindings to SFML multimedia/game library | ||||||||||
Sfml.jl | 70 | 6 | 4 years ago | September 28, 2016 | 19 | other | Julia | |||
A binding of the game and multimedia library SFML for Julia | ||||||||||
Pysfml Cython | 69 | 7 years ago | 12 | other | Python | |||||
A Python 2/3 binding for SFML 2, written with Cython |
This wrapper is outdated. Please use this newer CSFML wrapper: BlaXpirit/nim-csfml
Nimrod binding of SFML 2.0
This is only tested for Linux at the moment
I believe that is it
At this point in time Nimrod needs a little work to support C++ constructors. If
you do var window = Window(args)
this will not work, because sf::Window overrides
the =
operator. Instead, you should declare the window and then call the #create
method on it: var window: TRenderWindow; window.create(args)
. Most of the SFML
interface is like this: var font: TFont; font.loadFromFile("somefont.ttf")