alai/src/coin/CoinNotCollected.cpp

47 lines
1.0 KiB
C++
Raw Normal View History

#include "coin/CoinNotCollected.h"
2022-08-28 01:08:04 -04:00
#include <Area2D.hpp>
2022-07-15 23:04:06 -04:00
2022-08-28 01:08:04 -04:00
void alai::CoinNotCollected::_register_methods()
{
godot::register_method("_state_enter", &CoinNotCollected::_state_enter);
godot::register_method("_state_exit", &CoinNotCollected::_state_exit);
godot::register_method("_on_body_entered", &CoinNotCollected::_on_body_entered);
}
2022-08-28 01:08:04 -04:00
alai::CoinNotCollected::CoinNotCollected()
{
}
2022-08-28 01:08:04 -04:00
alai::CoinNotCollected::~CoinNotCollected()
{
}
2022-08-28 01:08:04 -04:00
void alai::CoinNotCollected::_init()
{
}
2022-08-28 01:08:04 -04:00
void alai::CoinNotCollected::_state_enter()
{
2022-08-28 01:08:04 -04:00
animated_sprite = get_parent()->get_node<godot::AnimatedSprite>("AnimatedSprite");
2022-06-06 20:59:51 -04:00
animated_sprite->set_animation("spin");
animated_sprite->play();
}
2022-08-28 01:08:04 -04:00
void alai::CoinNotCollected::_state_exit()
{
}
2022-08-28 01:08:04 -04:00
void alai::CoinNotCollected::_on_body_entered(Node *node)
{
auto parent_node = get_parent();
if (parent_node != nullptr)
{
2022-08-28 01:08:04 -04:00
auto coin = Object::cast_to<godot::Area2D>(parent_node);
coin->set_collision_mask_bit(0, false);
}
2022-07-15 23:04:06 -04:00
get_state_machine()->change("CoinCollected");
}