Skip to content
Snippets Groups Projects
Select Git revision
  • e0ca2d3e00967b49aaa11232036fedf5c153905f
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

TorusGenerator.cs

Blame
  • UIToolBox.cs 368 B
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    
    public static class UIToolBox
    {
        public static void PopulateLocalEntryList(GameObject entry, List<string> input)
        {
            for (int i = 0; i < input.Count; i++)
                entry.GetNthChild(new List<int> { i, 0, 0 }).GetComponent<TMPro.TextMeshProUGUI>().text = input[i];
        }
    }