Activator_AnimNode.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../Animation/AnimNode.hpp"
4 
6 
7 namespace iv
8 {
9 
10 class Activator_AnimNode : public iv::AnimNode< iv::Activator >
11 {
12 public:
14  iv::AnimNode< iv::Activator >( inst, iv::Activator() )
15  {
16  }
17 
18  void Activate()
19  {
20  this->Target( this->Target().MakeActivated() );
21  }
22 };
23 
24 }