<kby> 도대체 뭐가 잘못된 것인지 모르겠다. Project update

This commit is contained in:
opentutorials_by
2017-06-30 16:33:40 +09:00
parent 1c06a8344b
commit 8c17bfe4a9
3 changed files with 46 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
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 () {
}
}