カードの枚数が増減すると、表示がされたり非表示にする
設定にしたのですが、コード内容が長すぎてしまいます。
短縮する方法、アプローチ等ご存じの方がいらっしゃったら
是非教えていただきたいですm(_ _)m
c#
1if (maxCards == 8) 2 { 3 cards[0].SetActive(true); 4 cards[1].SetActive(true); 5 cards[2].SetActive(true); 6 cards[3].SetActive(true); 7 cards[4].SetActive(true); 8 cards[5].SetActive(true); 9 cards[6].SetActive(true); 10 cards[7].SetActive(true); 11 } 12 if (maxCards == 7) 13 { 14 cards[0].SetActive(true); 15 cards[1].SetActive(true); 16 cards[2].SetActive(true); 17 cards[3].SetActive(true); 18 cards[4].SetActive(true); 19 cards[5].SetActive(true); 20 cards[6].SetActive(true); 21 cards[7].SetActive(false); 22 } 23 if (maxCards == 6) 24 { 25 cards[0].SetActive(true); 26 cards[1].SetActive(true); 27 cards[2].SetActive(true); 28 cards[3].SetActive(true); 29 cards[4].SetActive(true); 30 cards[5].SetActive(true); 31 cards[6].SetActive(false); 32 cards[7].SetActive(false); 33 } 34 if (maxCards == 5) 35 { 36 cards[0].SetActive(true); 37 cards[1].SetActive(true); 38 cards[2].SetActive(true); 39 cards[3].SetActive(true); 40 cards[4].SetActive(true); 41 cards[5].SetActive(false); 42 cards[6].SetActive(false); 43 cards[7].SetActive(false); 44 } 45 if (maxCards == 4) 46 { 47 cards[0].SetActive(true); 48 cards[1].SetActive(true); 49 cards[2].SetActive(true); 50 cards[3].SetActive(true); 51 cards[4].SetActive(false); 52 cards[5].SetActive(false); 53 cards[6].SetActive(false); 54 cards[7].SetActive(false); 55 } 56 if (maxCards == 3) 57 { 58 cards[0].SetActive(true); 59 cards[1].SetActive(true); 60 cards[2].SetActive(true); 61 cards[3].SetActive(false); 62 cards[4].SetActive(false); 63 cards[5].SetActive(false); 64 cards[6].SetActive(false); 65 cards[7].SetActive(false); 66 } 67 68 if (maxCards == 2) 69 { 70 cards[0].SetActive(true); 71 cards[1].SetActive(true); 72 cards[2].SetActive(false); 73 cards[3].SetActive(false); 74 cards[4].SetActive(false); 75 cards[5].SetActive(false); 76 cards[6].SetActive(false); 77 cards[7].SetActive(false); 78 79 } 80 if (maxCards == 1) 81 { 82 cards[0].SetActive(true); 83 cards[1].SetActive(false); 84 cards[2].SetActive(false); 85 cards[3].SetActive(false); 86 cards[4].SetActive(false); 87 cards[5].SetActive(false); 88 cards[6].SetActive(false); 89 cards[7].SetActive(false); 90 } 91 if (maxCards == 0) 92 { 93 cards[0].SetActive(false); 94 cards[1].SetActive(false); 95 cards[2].SetActive(false); 96 cards[3].SetActive(false); 97 cards[4].SetActive(false); 98 cards[5].SetActive(false); 99 cards[6].SetActive(false); 100 cards[7].SetActive(false); 101 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。