Skip to content

Instantly share code, notes, and snippets.

@kleber-swf
kleber-swf / .gitignore
Last active January 20, 2023 00:21
Git ignore for Unity Projects
# =============== #
# Unity generated #
# =============== #
[Tt]emp/
[Oo]bj/
[Bb]uild
/[Ll]ibrary/
/[Ll]ogs/
sysinfo.txt
*.stackdump
@kleber-swf
kleber-swf / fnt2xml.js
Last active May 24, 2023 22:12
Converts a fnt text file to a fnt xml format. If a folder is given, process all .fnt files inside it.
// ======================================================== //
// USAGE: //
// $ node fnt2xml.js 'path/to/font.fnt' //
// Converts the specified file to a fnt xml //
// //
// $ node fnt2xml.js 'path/to/fonts/dir' //
// Converts all the .fnt files to fnt xml //
// ======================================================== //