Universally challenged added
This commit is contained in:
@@ -70,9 +70,9 @@ public class NoPointsController : UdonSharpBehaviour
|
||||
noPointsManager.currentQuestion = question;
|
||||
questionTitleText.text = question.questionTitle;
|
||||
questionDescriptionText.text = question.questionDescription;
|
||||
foreach (Transform child in answerListContainer.transform)
|
||||
for (int i = answerListContainer.transform.childCount - 1; i >= 0; i--)
|
||||
{
|
||||
Destroy(child.gameObject);
|
||||
Destroy(answerListContainer.transform.GetChild(i).gameObject);
|
||||
}
|
||||
GameObject answerInfoObj = Instantiate(answerRowPrefab, answerListContainer.transform);
|
||||
NoPointsAnswerRow answerInfoRow = answerInfoObj.GetComponent<NoPointsAnswerRow>();
|
||||
|
||||
Reference in New Issue
Block a user