Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created April 24, 2018 09:22
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/40a47502a8d0bffb3ee967e888968cd9 to your computer and use it in GitHub Desktop.
Save todorok1/40a47502a8d0bffb3ee967e888968cd9 to your computer and use it in GitHub Desktop.
Unityチュートリアル・角度に合わせて矢印を動かすスクリプト。
public void SetGuidesState(bool isActive){
// リストに存在するガイドを引数に応じて表示/非表示
foreach (GameObject guide in guideList){
guide.SetActive(isActive);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment