Maksims / playcanvas-spine

Plugin component for PlayCanvas which enables support for Spine animations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PlayCanvas Spine

A Spine plugin for the PlayCanvas Engine.

Usage

Editor

Add the files lib/playcanvas-spine.min.js and src/script/spline.js to your project.

Create an Entity with a Script Component and add the spine entity script spine to your Entity. Upload your exported spine resources (atlas, skeleton json file, textures) and attach them to the spine script on your Entity.

Engine-only

Include the library script lib/playcanvas-spine.min.js. Either use the script src/script/spine.js in script components or directly add spine components to your Entities.

var entity = new pc.Entity();
entity.addComponent("spine", {
    atlasAsset: atlas, // atlas text asset
    textureAssets: textures,  // texture assets
    skeletonAsset: skeleton // skeleton json asset
});

Building

If you don't already have it installed, install Grunt.

npm -g install grunt

Install package dependencies

npm install

Run grunt to build

grunt

Notes

This plugin uses the spine-ts runtime and is built from version 3.6

About

Plugin component for PlayCanvas which enables support for Spine animations.

License:MIT License


Languages

Language:JavaScript 100.0%