We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I would consider the example line the easiest way to "get started" with the application.
Your example line;
find *.png | texpack -o out/atlas -p 16 -m metadata.json -b
I would suggest doing the following:
texpack
out
find . -name "*.png"
texpack.exe
Perhaps something like this?
mkdir -p out find . -name "*.png" | texpack.exe -o out/atlas
The text was updated successfully, but these errors were encountered:
I can provide a PR if you like!
Sorry, something went wrong.
Updated the example as you suggested. Perhaps later on I'll make it check if the directory exists and create it if it doesn't.
mkdir -p
Merge pull request #2 from qwertysam/dev
cb26664
Added XML format
No branches or pull requests
I would consider the example line the easiest way to "get started" with the application.
Your example line;
I would suggest doing the following:
texpack
determine if theout
director exists, and if not, make it.find . -name "*.png"
for the find example, so it recursively looks through directories.texpack.exe
😞 )Perhaps something like this?
The text was updated successfully, but these errors were encountered: