Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

onSaveSpritesheet filenameChunks are a number? #82

Closed
jednano opened this issue Feb 7, 2017 · 0 comments
Closed

onSaveSpritesheet filenameChunks are a number? #82

jednano opened this issue Feb 7, 2017 · 0 comments

Comments

@jednano
Copy link
Contributor

jednano commented Feb 7, 2017

This document says to write the following line of code:

var filenameChunks = spritesheet.groups.slice().push('png');

But then the value of filenameChunks would be a number.

Is this supposed to be something like this?

var filenameChunks = spritesheet.groups.concat('png');

My current onSaveSpritesheet callback looks like this:

onSaveSpritesheet: (opts, spritesheet) => {
    return join(
        opts.spritePath,
        spritesheet.groups.concat('png').join('.')
    );
}

Is that the right idea?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant