Files
dlfqks/Assets/2. Scripts/csTestScript.cs

21 lines
384 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class csTestScript : MonoBehaviour {
// Use this for initialization
void Start () {
Text thisText = this.GetComponent<Text>();
thisText.text = "I hate Hello World!! \nhahaha!! \nkby";
}
// Update is called once per frame
void Update () {
}
}