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

<Card
		title="Bevy Sprite Animation"
		image="https://lab.lcr.gr/uploads/-/system/project/avatar/48/noun-zoetrope-1241001-FFFFFF.png?width=64"
		url="lab.lcr.gr/microhacks/micro-banimate"
		badges={[
				{ href: 'https://crates.io/crates/micro_banimate', src: 'https://img.shields.io/crates/v/micro_banimate?color=%2344a8ff&style=flat-square', alt: 'Crates IO' },
				{ href: 'https://docs.rs/micro_banimate', src: 'https://img.shields.io/docsrs/micro_banimate?style=flat-square', alt: 'Docs RS' },
			]}
		tags={[
				{ tag_type: 'active', content: 'Active Development' },
				{ tag_type: 'engine', content: 'Bevy' },
				{ tag_type: 'info', content: '2D' },
				{ tag_type: 'info', content: 'Graphics' },
			]}
>
	Spritesheet based sprite animation for Bevy, with support for single shot override animations and seamless directional animation switching.
	Complex sets of animations can be loaded as Bevy assets with hot-reloading support. Simple animations can be defined in code.
</Card>