Skip to content

object-Object/pymsch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pymsch

a package for generating mindustry schematic files with python code

here's a basic example:

from pymsch import Schematic, Block, Content

schem = Schematic()
schem.set_tag('name', 'Example Schematic')
schem.set_tag('description', 'A description for the schematic')

schem.add_block(Block(Content.COPPER_WALL, 0, 0, None, 0))

schem.write_clipboard()

This makes a schematic with a single copper wall, and outputs it to your clipboard to import into the game

About

A package for creating mindustry schematic files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%