Skip to content

Instantly share code, notes, and snippets.

@olegknyazev
Last active June 30, 2019 10:44
Show Gist options
  • Save olegknyazev/33a83317d77144f23ac45eaceab71776 to your computer and use it in GitHub Desktop.
Save olegknyazev/33a83317d77144f23ac45eaceab71776 to your computer and use it in GitHub Desktop.
An example of up-bottom naming in Turret
void ATurret::Tick(float DeltaSeconds) {
...
TimeSinceLastTargetUpdate += DeltaSeconds;
if (TimeSinceLastTargetUpdate >= TargetSearchInterval) {
TimeSinceLastTargetUpdate = 0.f;
CurrentTarget = FindBestTarget();
}
}
AActor* ATurret::FindBestTarget() {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment