References() private method

Helper function that determines whether the atlas uses the specified one, taking replacements into account.
private References ( UIAtlas, atlas ) : bool
atlas UIAtlas,
return bool
Exemplo n.º 1
0
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     if ((a == null) || (b == null))
     {
         return(false);
     }
     return(((a == b) || a.References(b)) || b.References(a));
 }
Exemplo n.º 2
0
    /// <summary>
    /// Helper function that determines whether the two atlases are related.
    /// </summary>

    static public bool CheckIfRelated(UIAtlas a, UIAtlas b)
    {
        if (a == null || b == null)
        {
            return(false);
        }
        return(a == b || a.References(b) || b.References(a));
    }
Exemplo n.º 3
0
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     if ((a == null) || (b == null))
     {
         return false;
     }
     return (((a == b) || a.References(b)) || b.References(a));
 }
Exemplo n.º 4
0
    /// <summary>
    /// Helper function that determines whether the atlas uses the specified one, taking replacements into account.
    /// </summary>

    bool References(UIAtlas atlas)
    {
        if (atlas == null)
        {
            return(false);
        }
        if (atlas == this)
        {
            return(true);
        }
        return((mReplacement != null) ? mReplacement.References(atlas) : false);
    }
Exemplo n.º 5
0
 private bool References(UIAtlas atlas)
 {
     if (atlas == null)
     {
         return(false);
     }
     if (atlas == this)
     {
         return(true);
     }
     return(mReplacement != null && mReplacement.References(atlas));
 }
Exemplo n.º 6
0
 public static Boolean CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     if (a == null || b == null)
     {
         return(false);
     }
     if (!(a == b) && !a.References(b))
     {
         return(b.References(a));
     }
     return(true);
 }
Exemplo n.º 7
0
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     if ((a == null) || (b == null))
     {
         return(false);
     }
     if ((a != b) && !a.References(b))
     {
         return(b.References(a));
     }
     return(true);
 }
Exemplo n.º 8
0
 /// <summary>
 /// Helper function that determines whether the two atlases are related.
 /// </summary>
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     if (a == null || b == null) return false;
     return a == b || a.References(b) || b.References(a);
 }
Exemplo n.º 9
0
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     return(!(a == null) && !(b == null) && (a == b || a.References(b) || b.References(a)));
 }
Exemplo n.º 10
0
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     return(((a != null) && (b != null)) && (((a == b) || a.References(b)) || b.References(a)));
 }
Exemplo n.º 11
0
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     if (a == null || b == null)
     {
         return false;
     }
     return (a == b || a.References(b) ? true : b.References(a));
 }
Exemplo n.º 12
0
 public static bool CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     return !(a == null) && !(b == null) && (a == b || a.References(b) || b.References(a));
 }
Exemplo n.º 13
0
 public static Boolean CheckIfRelated(UIAtlas a, UIAtlas b)
 {
     return(!(a == (UnityEngine.Object)null) && !(b == (UnityEngine.Object)null) && (a == b || a.References(b) || b.References(a)));
 }