Чутка доделал делегаты

This commit is contained in:
Jiga228
2026-06-22 14:47:53 +07:00
parent 59f147fafc
commit 280f843fb7
4 changed files with 186 additions and 11 deletions
+2 -2
View File
@@ -40,13 +40,13 @@ void Actor::Tick(double delta_time)
void Actor::SetActorLocate(const Vector3D& loc) noexcept
{
*this->loc_ = loc;
OnSetActorLocate.Call(loc);
OnSetActorLocate.call(loc);
}
void Actor::SetActorRotate(const Vector3D& rot) noexcept
{
*this->rot_ = rot;
OnSetActorRotate.Call(rot);
OnSetActorRotate.call(rot);
}
void Actor::AddTag(const std::string& tag) noexcept