*Update of spell target selection.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-01-08 14:22:15 -06:00
parent 7028dfd1b1
commit 08bb6082d9
5 changed files with 90 additions and 46 deletions

View File

@@ -1620,4 +1620,16 @@ void WorldObject::GetNearPoint(WorldObject const* searcher, float &x, float &y,
z = GetPositionZ();
UpdateGroundPositionZ(x,y,z);
}
}
void WorldObject::GetClosePointAt(float &x, float &y, float &z, float dist, float angle)
{
angle += GetOrientation();
x += dist * cos(angle);
y += dist * sin(angle);
Trinity::NormalizeMapCoord(x);
Trinity::NormalizeMapCoord(y);
UpdateGroundPositionZ(x, y, z);
}