gulp-free-tex-packer

0.5.4 • Public • Published

gulp-free-tex-packer

Stats
Free texture packer module for gulp
Based on https://github.com/odrick/free-tex-packer

Install

$ npm install gulp-free-tex-packer

Basic usage

let texturePacker = require('gulp-free-tex-packer');

gulp.task('pack', function() {
    return gulp.src('src/**/*.*')
        .pipe(texturePacker())
        .pipe(gulp.dest('dest/'));
});

Advanced usage

Use packer options object

let texturePacker = require('gulp-free-tex-packer');

gulp.task('pack', function() {
    return gulp.src('src/**/*.*')
        .pipe(texturePacker({
            textureName: "my-texture",
            width: 1024,
            height: 1024,
            fixedSize: false,
            padding: 2,
            allowRotation: true,
            detectIdentical: true,
            allowTrim: true,
            exporter: "Pixi",
            removeFileExtension: true,
            prependFolderName: true
        }))
	.pipe(gulp.dest('dest/'));
});

Pack options description: https://github.com/odrick/free-tex-packer-core#available-options

Custom exporters description: https://github.com/odrick/free-tex-packer-core#custom-exporter

Used libs


License: MIT

Package Sidebar

Install

npm i gulp-free-tex-packer

Weekly Downloads

352

Version

0.5.4

License

MIT

Unpacked Size

5.2 kB

Total Files

4

Last publish

Collaborators

  • odrick