dynamic scaling vertexArray with textureWrap (no more stretching)

This commit is contained in:
Antoine
2021-05-20 23:28:45 +02:00
parent bdc2144145
commit e3623072ff
6 changed files with 39 additions and 16 deletions

View File

@ -16,4 +16,9 @@ public class Vector3f {
this.z = z;
}
public void divXY(float div){
this.x /= div;
this.y /= div;
}
}