SkillAgentSearch skills...

Tmx

A library for parsing TMX files

Install / Use

/learn @Noofbiz/Tmx
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

tmx

A library for parsing TMX files

To use:

f, err := os.Open("test1.tmx")
defer f.Close()
if err != nil {
  fmt.Println(err)
  return
}
m, err := tmx.Parse(f)
if err != nil {
  fmt.Println(err)
  return
}
// Do stuff with your tmx map...

If your tmx resources are in another folder, or are somewhere other than where the binary is called, you can set it by setting TMXURL to the right path. Doing this will allow you to use external tilesets and templates for the map.

Related Skills

View on GitHub
GitHub Stars13
CategoryDevelopment
Updated8mo ago
Forks6

Languages

Go

Security Score

82/100

Audited on Jul 9, 2025

No findings