IsHidden() публичный Метод

Returns whether the current sprite in this animation is hidden:
public IsHidden ( ) : bool
Результат bool
Пример #1
0
    /// <summary>
    /// Returns whether the SuperSprite is hidden.
    /// </summary>
    /// <returns>True if hidden, false otherwise.</returns>
    public bool IsHidden()
    {
        if (curAnim == null)
        {
            // Assume unhidden:
            return(false);
        }

        return(curAnim.IsHidden());
    }