├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Scenes ├── display_continuous_flow_bars.tscn ├── display_continuous_flow_discrete_bars.tscn ├── display_discrete_flow_bars.tscn ├── display_discrete_flow_fade_bars.tscn └── example_game_scene.tscn ├── Scripts ├── demo_controller.gd ├── demo_controller.gd.uid ├── player_example.gd ├── player_example.gd.uid ├── progress_bar.gd └── progress_bar.gd.uid ├── Textures ├── frame_00.png ├── frame_00.png.import ├── frame_01.png ├── frame_01.png.import ├── frame_02.png ├── frame_02.png.import ├── frame_03.png ├── frame_03.png.import ├── frame_04.png ├── frame_04.png.import ├── frame_05.png ├── frame_05.png.import ├── frame_06.png └── frame_06.png.import ├── addons └── debug_menu │ ├── LICENSE.md │ ├── debug_menu.gd │ ├── debug_menu.gd.uid │ ├── debug_menu.tscn │ ├── plugin.cfg │ ├── plugin.gd │ └── plugin.gd.uid ├── icon.svg ├── icon.svg.import ├── progress_bar.gdshader ├── progress_bar.gdshader.uid └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | /android/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/README.md -------------------------------------------------------------------------------- /Scenes/display_continuous_flow_bars.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scenes/display_continuous_flow_bars.tscn -------------------------------------------------------------------------------- /Scenes/display_continuous_flow_discrete_bars.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scenes/display_continuous_flow_discrete_bars.tscn -------------------------------------------------------------------------------- /Scenes/display_discrete_flow_bars.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scenes/display_discrete_flow_bars.tscn -------------------------------------------------------------------------------- /Scenes/display_discrete_flow_fade_bars.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scenes/display_discrete_flow_fade_bars.tscn -------------------------------------------------------------------------------- /Scenes/example_game_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scenes/example_game_scene.tscn -------------------------------------------------------------------------------- /Scripts/demo_controller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scripts/demo_controller.gd -------------------------------------------------------------------------------- /Scripts/demo_controller.gd.uid: -------------------------------------------------------------------------------- 1 | uid://5ljin8quq4rk 2 | -------------------------------------------------------------------------------- /Scripts/player_example.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scripts/player_example.gd -------------------------------------------------------------------------------- /Scripts/player_example.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c62rw2iltcphu 2 | -------------------------------------------------------------------------------- /Scripts/progress_bar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Scripts/progress_bar.gd -------------------------------------------------------------------------------- /Scripts/progress_bar.gd.uid: -------------------------------------------------------------------------------- 1 | uid://wbnqar1hyhh8 2 | -------------------------------------------------------------------------------- /Textures/frame_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_00.png -------------------------------------------------------------------------------- /Textures/frame_00.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_00.png.import -------------------------------------------------------------------------------- /Textures/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_01.png -------------------------------------------------------------------------------- /Textures/frame_01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_01.png.import -------------------------------------------------------------------------------- /Textures/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_02.png -------------------------------------------------------------------------------- /Textures/frame_02.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_02.png.import -------------------------------------------------------------------------------- /Textures/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_03.png -------------------------------------------------------------------------------- /Textures/frame_03.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_03.png.import -------------------------------------------------------------------------------- /Textures/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_04.png -------------------------------------------------------------------------------- /Textures/frame_04.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_04.png.import -------------------------------------------------------------------------------- /Textures/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_05.png -------------------------------------------------------------------------------- /Textures/frame_05.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_05.png.import -------------------------------------------------------------------------------- /Textures/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_06.png -------------------------------------------------------------------------------- /Textures/frame_06.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/Textures/frame_06.png.import -------------------------------------------------------------------------------- /addons/debug_menu/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/addons/debug_menu/LICENSE.md -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/addons/debug_menu/debug_menu.gd -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0i3cp88wk2a4 2 | -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/addons/debug_menu/debug_menu.tscn -------------------------------------------------------------------------------- /addons/debug_menu/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/addons/debug_menu/plugin.cfg -------------------------------------------------------------------------------- /addons/debug_menu/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/addons/debug_menu/plugin.gd -------------------------------------------------------------------------------- /addons/debug_menu/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn2ogmqlxfyif 2 | -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/icon.svg.import -------------------------------------------------------------------------------- /progress_bar.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/progress_bar.gdshader -------------------------------------------------------------------------------- /progress_bar.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://xscx0lbvacff 2 | -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesusX/Progress-bar-shader/HEAD/project.godot --------------------------------------------------------------------------------