This commit is contained in:
Fab 2023-02-19 15:41:47 +00:00 committed by GitHub
commit 7dbe2ee2e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ Point Orb::target() const
void Orb::update()
{
auto mover = get<Mover>();
auto diff = Vec2(target() - entity()->position).normal();
auto diff = Vec2f(target() - entity()->position).normal();
mover->speed = diff * speed;
}