FAtlasManager.DoesContainAtlas C# (CSharp) Method

DoesContainAtlas() public method

public DoesContainAtlas ( string name ) : bool
name string
return bool
    public bool DoesContainAtlas(string name)
    {
        int atlasCount = _atlases.Count;
        for(int a = 0; a<atlasCount; ++a)
        {
            if(_atlases[a].name == name) return true;
        }
        return false;
    }