minor adjustments

This commit is contained in:
Anthony Calosa
2021-10-05 14:33:51 +08:00
parent 31ad3bf7a5
commit a1ff670df2

View File

@@ -107,7 +107,7 @@ public class VAvatar extends FDisplayObject {
public Vector2 getTargetingArrowOrigin() { public Vector2 getTargetingArrowOrigin() {
Vector2 origin = new Vector2(this.screenPos.x, this.screenPos.y); Vector2 origin = new Vector2(this.screenPos.x, this.screenPos.y);
origin.x += getWidth()/2f; origin.x += getWidth()-getWidth()/3.5f; //move a little bit so the avatar face is still shown...
origin.y += getWidth()/2f; origin.y += getWidth()/2f;
return origin; return origin;
} }