Removed unnecessary assignments

This commit is contained in:
Wilson E. Alvarez 2018-11-04 22:19:30 -05:00
parent 121cead38e
commit 71df4caf8f
No known key found for this signature in database
GPG key ID: A32174A3D2ED3F9E
5 changed files with 0 additions and 8 deletions

View file

@ -294,7 +294,6 @@ void LineBuilder::build() {
if (texture_mode == Line2D::LINE_TEXTURE_TILE) {
uvx1 = current_distance1 / (width * tile_aspect);
} else if (texture_mode == Line2D::LINE_TEXTURE_STRETCH) {
uvx0 = current_distance0 / total_distance;
uvx1 = current_distance1 / total_distance;
}