• This project
    • Loading...
  • Sign in

I_Jemin / dotnet-Network-Programming-with-Unity

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • dotnet-Network-Programming-with-Unity
  • Network Chatting
  • Assets
  • Scripts
  • ChatText.cs
  • I_Jemin's avatar
    Network Chatting Prject · 7540f682
    7540f682 Browse Files
    I_Jemin authored 2018-01-30 00:28:35 +0900
ChatText.cs 246 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class ChatText : MonoBehaviour {

	public Text commentText;
	public void SetUp(string message)
	{
		commentText.text = message;
	}

}