From 9e78fe7d3b3ea33eba43ec5927b517326c7896b1 Mon Sep 17 00:00:00 2001 From: SET001 Date: Mon, 13 Nov 2023 17:05:41 +0200 Subject: [PATCH] up --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 9ac0e5b..df3727e 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,6 @@ A small [Bevy](https://github.com/bevyengine/bevy) plugin to scroll things and c ## About -A small [Bevy](https://github.com/bevyengine/bevy) plugin to scroll things. - The idea is simple - you define an area for the scroller and select an item generator that will be responsible for generating items. Scroller will fill the area with items from this generator, update its position, track which items moved out of the area and need to be destroyed, and track when new items need to be generated. This plugin makes no assumptions as to what actually will be a scroller item. There are few predefined generators that implements common strategies to gerenerate sprites as scroller items. You can also [implement your own generators](#custom-generators) to scroll whatever you want ([tilemaps](#example_tilemap), animations, complex entity hierarchies, etc.). By creating mutliple scrollers with different z-index, sprite and speed, you can easily create parallaxes ([example](#example_parallax)).