Skip to content
Snippets Groups Projects
+page.svelte 1.11 KiB
Newer Older
<script>
	import Card from "../../components/Card.svelte";
</script>

<Card
Louis's avatar
Louis committed
		title="Autotile"
		image="https://lab.lcr.gr/uploads/-/system/project/avatar/69/noun-tiling-1036560-FFFFFF.png?width=64"
		url="lab.lcr.gr/microhacks/micro_autotile"
		badges={[
				{ href: 'https://crates.io/crates/micro_autotile', src: 'https://img.shields.io/crates/v/micro_autotile?color=%2344a8ff&style=flat-square', alt: 'Crates IO' },
				{ href: 'https://docs.rs/micro_autotile', src: 'https://img.shields.io/docsrs/micro_autotile?style=flat-square', alt: 'Docs RS' },
			]}
		tags={[
				{ tag_type: 'active', content: 'Active Development' },
				{ tag_type: 'info', content: 'Data' },
				{ tag_type: 'info', content: 'Rendering' },
				{ tag_type: 'info', content: 'Tilemaps' },
			]}
>
	An implementation of the LDTK auto-tiling algorithm, for use in
	Rust programs at runtime. The representation is compatible with that saved by LDTK, meaning that
	definitions can be loaded directly from LDTK JSON exports. Great for either building a
	compatible editor into your project, or for using LDTK's rule format to decorate generated
	content.
</Card>