└── addons └── proton_control_animation ├── examples ├── 00_showcase.tscn ├── 01_getting_started.tscn ├── 02_loops.tscn ├── 03_copies.tscn ├── 04_copies_with_the_same_event_source.tscn ├── 05_triggers.tscn ├── 06_play_animations_in_parallel.tscn ├── 07_chain_animations.tscn ├── 08_pivot_override.tscn ├── scripts │ ├── showcase.gd │ └── showcase.gd.uid └── theme │ ├── assets │ ├── License.txt │ ├── panel-000.png │ ├── panel-000.png.import │ ├── panel-border-013.png │ ├── panel-border-013.png.import │ ├── panel-transparent-border-000.png │ ├── panel-transparent-border-000.png.import │ ├── panel-transparent-center-000.png │ ├── panel-transparent-center-000.png.import │ ├── panel-transparent-center-031.png │ └── panel-transparent-center-031.png.import │ └── pca_theme.tres ├── plugin.cfg ├── plugin.cfg.uid ├── plugin.gd ├── plugin.gd.uid └── src ├── animations ├── base_animation.gd ├── base_animation.gd.uid ├── fade.gd ├── fade.gd.uid ├── modulate.gd ├── modulate.gd.uid ├── rotate.gd ├── rotate.gd.uid ├── scale.gd ├── scale.gd.uid ├── size.gd ├── size.gd.uid ├── slide.gd └── slide.gd.uid ├── icons ├── animation.svg ├── animation.svg.import ├── copy.svg ├── copy.svg.import ├── trigger.svg └── trigger.svg.import ├── metadata_updater.gd ├── metadata_updater.gd.uid ├── proton_control_animation.gd ├── proton_control_animation.gd.uid ├── proton_control_copy_animation.gd └── proton_control_copy_animation.gd.uid /addons/proton_control_animation/examples/00_showcase.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/00_showcase.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/01_getting_started.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/01_getting_started.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/02_loops.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/02_loops.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/03_copies.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/03_copies.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/04_copies_with_the_same_event_source.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/04_copies_with_the_same_event_source.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/05_triggers.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/05_triggers.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/06_play_animations_in_parallel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/06_play_animations_in_parallel.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/07_chain_animations.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/07_chain_animations.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/08_pivot_override.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/08_pivot_override.tscn -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/scripts/showcase.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/scripts/showcase.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/scripts/showcase.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dhoqx8lfhmiro 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/License.txt -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-000.png -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-000.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-000.png.import -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-border-013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-border-013.png -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-border-013.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-border-013.png.import -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-transparent-border-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-transparent-border-000.png -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-transparent-border-000.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-transparent-border-000.png.import -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-transparent-center-000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-transparent-center-000.png -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-transparent-center-000.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-transparent-center-000.png.import -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-transparent-center-031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-transparent-center-031.png -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/assets/panel-transparent-center-031.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/assets/panel-transparent-center-031.png.import -------------------------------------------------------------------------------- /addons/proton_control_animation/examples/theme/pca_theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/examples/theme/pca_theme.tres -------------------------------------------------------------------------------- /addons/proton_control_animation/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/plugin.cfg -------------------------------------------------------------------------------- /addons/proton_control_animation/plugin.cfg.uid: -------------------------------------------------------------------------------- 1 | uid://cdiaq5dib0rwu 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/plugin.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn80ohe7jfiyv 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/base_animation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/animations/base_animation.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/base_animation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dw61vas3417hf 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/fade.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/animations/fade.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/fade.gd.uid: -------------------------------------------------------------------------------- 1 | uid://doh0f6x2cdghd 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/modulate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/animations/modulate.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/modulate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cgcpcomn0ia24 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/rotate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/animations/rotate.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/rotate.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ciccapc76ic3k 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/scale.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/animations/scale.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/scale.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bi4omyv2xson 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/size.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/animations/size.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/size.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cgfitqw3drre2 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/slide.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/animations/slide.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/animations/slide.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bsufjcw4lsn2a 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/icons/animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/icons/animation.svg -------------------------------------------------------------------------------- /addons/proton_control_animation/src/icons/animation.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/icons/animation.svg.import -------------------------------------------------------------------------------- /addons/proton_control_animation/src/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/icons/copy.svg -------------------------------------------------------------------------------- /addons/proton_control_animation/src/icons/copy.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/icons/copy.svg.import -------------------------------------------------------------------------------- /addons/proton_control_animation/src/icons/trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/icons/trigger.svg -------------------------------------------------------------------------------- /addons/proton_control_animation/src/icons/trigger.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/icons/trigger.svg.import -------------------------------------------------------------------------------- /addons/proton_control_animation/src/metadata_updater.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/metadata_updater.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/metadata_updater.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b3q8b65sialab 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/proton_control_animation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/proton_control_animation.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/proton_control_animation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b4hvmk8t0qkgu 2 | -------------------------------------------------------------------------------- /addons/proton_control_animation/src/proton_control_copy_animation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HungryProton/proton_control_animation/HEAD/addons/proton_control_animation/src/proton_control_copy_animation.gd -------------------------------------------------------------------------------- /addons/proton_control_animation/src/proton_control_copy_animation.gd.uid: -------------------------------------------------------------------------------- 1 | uid://p8liavl4kvv8 2 | --------------------------------------------------------------------------------