Replaced move_template with procedural circle primitive - but it won't fill or alphatize yet.

This commit is contained in:
2011-06-22 23:52:22 -04:00
parent ecb16a4b5c
commit b5e385586d
3 changed files with 36 additions and 3 deletions

View File

@ -91,9 +91,8 @@ void GameCore::render()
if (graph.get_current_vertex() != NULL)
{
Vertex* v = graph.get_current_vertex();
DrawUtils::draw(display, move_template,
v->x - Graph::MAX_MOVE_DISTANCE,
v->y - Graph::MAX_MOVE_DISTANCE);
DrawUtils::draw_circle_filled(display, v->x, v->y,
Graph::MAX_MOVE_DISTANCE, 0xcb1919, 128);
}