Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

tps-watch

Wizcorp11MIT0.1.1

Instantly generate TexturePacker spritesheets when assets are updated

texturepacker, spritesheets, watch, realtime, assets

readme

tps-watch

TexturePacker .tps-file watcher that autogenerates spritesheets when source files change

Installation

npm install tps-watch --save

Or globally:

npm install tps-watch --global

Requirements

To use this, you must have purchased and installed TexturePacker Pro, which enables the command line interface.

Unfortunately, tps-watch is not yet Windows compatible.

Usage

As a binary:

tps-watch ./folder/containing/tpsfiles --notify

As a library:

const watch = require('tps-watch');

const tpsFiles = ['./foo/bar/mySpritesheet.tps'];
const texturePackerPath = '/usr/local/bin/TexturePacker';
const notify = true;

watch(tpsFiles, texturePackerPath, notify);

Turning on notify will use node-notifier to show a notification every time a spritesheet has been recreated.

License

MIT