The spine-sdl runtime provides functionality to load, manipulate and render Spine skeletal animation data using SDL. spine-sdl is based on spine-c and spine-cpp, depending on whether you want to use a C or C++ implementation.
See the spine-sdl documentation for in-depth information
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-sdl works with data exported from Spine 4.1.xx.
spine-sdl supports all Spine features except premultiplied alpha, screen blend mode, and two color tinting.
- Create a new SDL project. See the SDL 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. - If you are using C, add the sources from
spine-c/spine-c/src/spine
andspine-sdl/src/spine-sdl-c.c
to your project, and add the folderspine-c/spine-c/include
andspine-sdl/src/spine-sdl-c.h
to your header search path. Note that includes are specified as#inclue <spine/file.h>
, so thespine
directory cannot be omitted when copying the source files. - If you are using C++, add the sources from
spine-cpp/spine-cpp/src/spine
andspine-sdl/src/spine-sdl-cpp.cpp
to your project, and add the folderspine-cpp/spine-cpp/include
andspine-sdl/src/spine-sdl-cpp.h
to your header search path. Note that includes are specified as#include <spine/file.h>
, so thespine
directory cannot be omitted when copying the source files.
See the Spine Runtimes documentation on how to use the APIs or check out the Spine SDL example in this repository.
The Spine SDL example works on Windows, Linux and Mac OS X. For a spine-c based example, see example/main.c, for a spine-cpp example see example/main.cpp.
- Install Visual Studio Community. Make sure you install support for C++ as well as th Windows SDK for XP/7/8.
- Install CMake via the Windows installer package.
- 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. - Run CMake GUI from the start menu
- Click
Browse Source
and select the directoryspine-runtimes
- Click
Browse Build
and select thespine-runtimes/spine-sdl/build
directory. You can create thebuild
folder directly in the file dialog viaNew Folder
. - Click
Configure
. Then clickGenerate
. This will create a Visual Studio solution file calledspine.sln
inspine-runtimes/spine-sdl/build
and also download the SDL dependencies. - Open the
spine.sln
file in Visual Studio - Right click the
spine-sdl-example-c
orspine-sdl-example-cpp
project in the solution explorer and selectSet as Startup Project
from the context menus - Click
Local Windows Debugger
to run the example
The entire example code is contained in main.cpp
- Install the SDL build dependencies
- 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
cd
into thespine-runtimes/spine-sdl
folder - Type
mkdir build && cd build && cmake ../..
to generate Make files - Type
make
to compile the example - Run the example by
cd spine-sdl && ./spine-sdl-c-example
(C) or bycd spine-sdl && ./spine-sdl-cpp-example
(C++)
- 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
cd
into thespine-runtimes/spine-sdl
folder - Type
mkdir build && cd build && cmake ../..
to generate Make files - Type
make
to compile the example - Run the example by
cd spine-sdl && ./spine-sdl-c-example
(C) or bycd spine-sdl && ./spine-sdl-cpp-example
(C++)