Skip to content
Snippets Groups Projects
Select Git revision
  • 3ed9fa15f3d3633ea1003ade50f4fdf7423ce242
  • 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

Fact.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];
        }
    }