Skip to content

Instantly share code, notes, and snippets.

@eunjin3786
Created February 23, 2022 10:01
Show Gist options
  • Save eunjin3786/c6605160877f9a86b3a3e5c94595ef5b to your computer and use it in GitHub Desktop.
Save eunjin3786/c6605160877f9a86b3a3e5c94595ef5b to your computer and use it in GitHub Desktop.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class CanvasController : MonoBehaviour
{
public Text dynamicText;
void SetText(string text)
{
dynamicText.text = text;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment