Ejemplo n.º 1
0
    private void SetTextBoxText(string text)
    {
        //unescape the string to allow newlines
        _currentAppendingText = System.Text.RegularExpressions.Regex.Unescape(text);

        //Text size needs a text mesh
        _textMesh.text = _currentAppendingText;

        TextSize ts = new TextSize(_textMesh);
        ts.FitToWidth(lineLength);

        //Retrieve the modified string
        _currentAppendingText = _textMesh.text;

        //Split the tag and the text from the whole text line
        string[] splitLines = _currentAppendingText.Split(delimArray, System.StringSplitOptions.RemoveEmptyEntries);

        //Catch if we split correctly
        if(splitLines.Length == 2)
        {
            _currentTBIdentifier = splitLines[0];
            _currentAppendingText = splitLines[1];

            HideAllTextBoxes();

            ShowSpecifiedText(_currentTBIdentifier);
        }
        else
        {
            HideAllTextBoxes();

            //manually set this to interactable tag because the split didn't work
            _currentTBIdentifier = interactionTag;

            ShowSpecifiedText(interactionTag);
        }

        //Clear the textmesh since we're going to be appending to it
        _textMesh.text = "";

        StartAppendingText();
    }
Ejemplo n.º 2
0
    public void wrapTextTo(float wrapTo)
    {
//		print (ts.width);
        ts.FitToWidth(wrapTo);
    }
Ejemplo n.º 3
0
 // Use this for initialization
 void Start()
 {
     ts = new TextSize(gameObject.GetComponent<TextMesh>());
     //	Debug.Log("Initial width of string: " + ts.width);
     ts.FitToWidth(lineWidth);
 }
Ejemplo n.º 4
0
 public void ShowText(string text)
 {
     wallTextMesh.text = text;
     wallTextSize.FitToWidth(maxWidth, kMaxLines);
 }