diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-07 11:20:58 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-07 11:20:58 +0100 |
commit | fcae8934916c9f429e58c8e178ab14fcf65a2bbc (patch) | |
tree | 34cddb9fad2c8639dfed3ffbb3216be9ac5e8b52 /game/menus/IFloatingWindowScript.cpp | |
parent | 126c402548281f3a97e3a9e0ef60c45147c87fa0 (diff) |
added end game
Diffstat (limited to 'game/menus/IFloatingWindowScript.cpp')
-rw-r--r-- | game/menus/IFloatingWindowScript.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/game/menus/IFloatingWindowScript.cpp b/game/menus/IFloatingWindowScript.cpp new file mode 100644 index 0000000..ce84de7 --- /dev/null +++ b/game/menus/IFloatingWindowScript.cpp @@ -0,0 +1,23 @@ +#include "IFloatingWindowScript.h" +#include "api/Sprite.h" +#include "types.h" + +using namespace crepe; + +void IFloatingWindowScript::init(){ + this->disable_all_sprites(); +} + +void IFloatingWindowScript::disable_all_sprites(){ + RefVector<Sprite> sprites = this->get_components_by_tag<Sprite>(this->tag); + for(Sprite & sprite : sprites){ + sprite.active = false; + } +} + +void IFloatingWindowScript::enable_all_sprites(){ + RefVector<Sprite> sprites = this->get_components_by_tag<Sprite>(this->tag); + for(Sprite & sprite : sprites){ + sprite.active = true; + } +} |