Beispiel #1
0
    // TODO /
    void resetfont(Hashtable param)
    {
        SystemUIEvent sys = SystemUIEvent.Instance;

        if (sys == null)
        {
            Debug.LogError("SystemUIEvent not found in this scene.");
            return;
        }

        // Commit Changes to Current Message Target.
        ViNoTextBox textBox = sys.GetCurrentTextBox();

        if (textBox != null)
        {
            textBox.ResetFont();
        }
    }