Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active April 13, 2018 03:53
Show Gist options
  • Save todorok1/cbd4fd2b4a5934c449779d93aa58146b to your computer and use it in GitHub Desktop.
Save todorok1/cbd4fd2b4a5934c449779d93aa58146b to your computer and use it in GitHub Desktop.
Unityチュートリアル・ボールの飛距離を計算するスクリプト。
void FixedUpdate(){
// 距離の測定
CheckDistance();
if (!isBoostPressed){
// キーまたはボタンが押されていなければ
// 処理の切り替えをせず抜ける
return;
}
if (isFlying){
// 飛行中の処理
StopFlying();
} else {
// ボールを飛ばす処理
BoostSphere();
}
// 飛行中フラグの切り替え
isFlying = !isFlying;
// どちらの処理をしてもボタン押下フラグをfalseに
isBoostPressed = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment