mirror of
https://github.com/byeongyupKim/dlfqks.git
synced 2026-02-04 12:02:59 +09:00
21 lines
384 B
C#
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 () {
|
|
|
|
}
|
|
}
|