GameEntities.CutSceneManager.GetMessage C# (CSharp) Méthode

GetMessage() public méthode

public GetMessage ( string &text, ColorValue &color ) : bool
text string
color ColorValue
Résultat bool
        public bool GetMessage( out string text, out ColorValue color )
        {
            if( messageText != null )
            {
                text = messageText;
                color = messageColor;
                return true;
            }
            else
            {
                text = null;
                color = new ColorValue( 0, 0, 0 );
                return false;
            }
        }