Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

reynarzz/UTalk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UTalk

An Unity3D talk system that highlights words in your text very easy.

How it looks?

Let's choose some colors for all the important words!

Open the editor: Window > TalkEditor

Easy to implement!

Just a few method calls and you will be ready to show some awesome text!

using uTalk;

namespace MyProject
{
    public class Example : MonoBehaviour
    {
    	[SerializeField] private UTalk _utalk;
	[SerializeField] private TalkCloudBase _talkCloud;
        
	private void Update()
        {
            if (Input.GetMouseButtonDown(0))
            {
                if (!_utalk.IsTalking)
                {
		    var talkInfo = new TalkInfo("Group", "SubGroup", "TalkName", "Language");

                    _utalk.StartTalk(_talkCloud, talkInfo);
                }
                else
                {
                    _utalk.NextPage();
                }
            }
        }
    }
}

But, that's it?

This is just starting, These are some of the features that will be added soon.

  • Localization Support
  • A Robust Editor.
    • Write and hightlight the words.
    • Import/Export talk files.
  • Animations to the words.

Running ver?

2020.1.9f1, but newer versions should work as well.

About

Unity3D Highlight and animate all the words in your text easily!

Resources

License

Stars

Watchers

Forks

Packages

No packages published