The spine-love runtime provides functionality to load, manipulate and render Spine skeletal animation data using LÖVE. spine-love is based on spine-lua.
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-love works with data exported from Spine 3.8.x.
spine-love supports all Spine features except for blending modes other than normal.
spine-love does not yet support loading the binary format.
- Download the Spine Runtimes source using git or by downloading it as a zip via the download button above.
- Copy the contents of
spine-lua
tospine-love/spine-lua
. - Run the
main.lua
file using LÖVE.
Alternatively, the spine-lua
and spine-love/spine-love
directories can be copied into your project. Note that the require statements use spine-lua.Xxx
, so the spine-lua files must be in a spine-lua
directory in your project.
- To enable two color tinting, pass
true
toSkeletonRenderer.new()
.
If you want to run and debug the example project, use IntelliJ IDEA with the EmmyLua plugin.
- Install IntelliJ IDEA and the EmmyLua plugin.
- Install LÖVE.
- Copy the contents of
spine-lua
tospine-love/spine-lua
. - Open the
spine-love
folder in IntelliJ IDEA. - Create a new launch configuration of the type
Lua Application
, with the following settingsProgram
should point at thelove
orlove.exe
executable, e.g./Applications/love.app/Contents/MacOS/love
on macOS.Working directory
should be thespine-love/
directory.Parameters
should be./
so LÖVE loads themain.lua
file fromspine-love/
.