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

◆ ShouldCameraTrackBallLastKnownLocation

bool Terraria.GameContent.Golf.GolfState.ShouldCameraTrackBallLastKnownLocation
get

Definition at line 46 of file GolfState.cs.

47 {
48 get
49 {
50 if (_lastRecordedBallTime + 2.0 >= Main.gameTimeCache.TotalGameTime.TotalSeconds)
51 {
52 return GetLastHitBall() == null;
53 }
54 return false;
55 }
56 }