Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Left

Vector2 Terraria.Entity.Left
getsetinherited

Definition at line 54 of file Entity.cs.

55 {
56 get
57 {
58 return new Vector2(position.X, position.Y + (float)(height / 2));
59 }
60 set
61 {
62 position = new Vector2(value.X, value.Y - (float)(height / 2));
63 }
64 }
Vector2 position
Definition Entity.cs:14

Referenced by Terraria.Projectile.AI_144_DD2Pet().