spine-sfml
The spine-sfml runtime provides functionality to load, manipulate and render Spine skeletal animation data using SFML. spine-sfml is based on spine-c.
Licensing
You are welcome to evaluate the Spine Runtimes and the examples we provide in this repository free of charge.
You can integrate the Spine Runtimes into your software free of charge, but users of your software must have their own Spine license. Please make your users aware of this requirement! This option is often chosen by those making development tools, such as an SDK, game toolkit, or software library.
In order to distribute your software containing the Spine Runtimes to others that don't have a Spine license, you need a Spine license at the time of integration. Then you can distribute your software containing the Spine Runtimes however you like, provided others don't modify it or use it to create new software. If others want to do that, they'll need their own Spine license.
For the official legal terms governing the Spine Runtimes, please read the Spine Runtimes License Agreement and Section 2 of the Spine Editor License Agreement.
Spine version
spine-sfml works with data exported from Spine 4.2.xx.
spine-sfml supports all Spine features except two color tinting.
Usage
- Create a new SFML project. See the SFML documentation or have a look at the example in this repository.
- Download the Spine Runtimes source using git (
git clone https://github.com/esotericsoftware/spine-runtimes) or download it as a zip via the download button above. - Add the sources from
spine-c/spine-c/src/spineandspine-sfml/src/c/spineto your project - Add the folder
spine-c/spine-c/includeto your header search path. Note that includes are specified as#inclue <spine/file.h>, so thespinedirectory cannot be omitted when copying the source files.
See the Spine Runtimes documentation on how to use the APIs or check out the Spine SFML example.
Example
The Spine SFML example works on Windows, Linux and Mac OS X.
Windows
- Install Visual Studio 2022 Community. Make sure you install support for C++, CMake as well as th Windows SDK for XP/7/8.
- Open Visual Studio and open the
spine-sfml/cfolder via theOpen a local folderbutton - Let CMake finish, then select
spine-sfml-cpp-example.exeas the start-up project - Start debugging to run the example
Linux
- Install the SFML dependencies, e.g. on Ubuntu/Debian via
sudo apt install libsfml-dev - Install CMake, e.g. on Ubuntu/Debian via
sudo apt-get install -y cmake - Download the Spine Runtimes repository using git (
git clone https://github.com/esotericsoftware/spine-runtimes) or download it as a zip via the download button above. - Open a terminal, and
cdinto thespine-runtimes/spine-sfml/cfolder - Type
mkdir build && cd build && cmake ..to generate Make files - Type
make -j8to compile the example - Run the example via
./spine-sfml-c-example
Mac OS X
- Install Xcode
- Install Homebrew
- Open a terminal and install CMake via
brew install cmake - Download the Spine Runtimes repository using git (
git clone https://github.com/esotericsoftware/spine-runtimes) or download it as a zip via the download button above. - Open a terminal, and
cdinto thespine-runtimes/spine-sfml/cfolder - Type
mkdir build && cd build && cmake -G Xcode ..to generate an Xcode project calledspine-sfml.xcodeproj - Type
open spine-sfml.xcodeprojto open the Xcode project - In Xcode, set the active scheme to
spine-sfml-c-example - Click the
Runbutton or pressCMD+Rto run the example
Notes
- Atlas images should not use premultiplied alpha.