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

<Card
		title="Bevy Musicbox"
		image="https://lab.lcr.gr/uploads/-/system/project/avatar/33/noun-record-player-1872358-FFFFFF.png?width=64"
		url="lab.lcr.gr/microhacks/micro-bevy-musicbox"
		badges={[
				{ href: 'https://crates.io/crates/micro_musicbox', src: 'https://img.shields.io/crates/v/micro_musicbox?color=%2344a8ff&style=flat-square', alt: 'Crates IO' },
				{ href: 'https://docs.rs/micro_musicbox', src: 'https://img.shields.io/docsrs/micro_musicbox?style=flat-square', alt: 'Docs RS' },
			]}
		tags={[
				{ tag_type: 'active', content: 'Active Development' },
				{ tag_type: 'engine', content: 'Bevy' },
				{ tag_type: 'info', content: 'Audio' },
				{ tag_type: 'info', content: 'Wrappers' },
			]}
>
	Configures and manages bevy_kira_audio for the common game audio scenario. This includes cross fading relevant tracks, spatial audio, and channel management - giving you
	individual control of the audio levels for your music, ambiance, sound effects and UI.
</Card>