Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active April 13, 2018 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/6d63021ea43cc87368f1478b135a8ab2 to your computer and use it in GitHub Desktop.
Save todorok1/6d63021ea43cc87368f1478b135a8ab2 to your computer and use it in GitHub Desktop.
Unityチュートリアル・ボールの飛距離とハイスコアをゲーム画面に表示するスクリプト。
void CheckDistance(){
if (!isCheckingDistance){
// 距離測定中でなければ何もしない
return;
}
// 現在位置までの距離を計算する
Vector3 currentPosition = gameObject.transform.position;
float distance = GetDistanceInXZ(initPosition, currentPosition);
// UIテキストに表示
SetDistanceText(distance);
if (rb.IsSleeping()){
// ハイスコアのチェック
stopPosition = currentPosition;
float currentDistance = GetDistanceInXZ(initPosition, stopPosition);
if (currentDistance > highScoreDistance){
highScoreDistance = currentDistance;
}
SetHighScoreText(highScoreDistance);
// 距離測定中フラグをオフに
isCheckingDistance = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment