Hi again ,

I try to put all textures I need into an array. Now I have the problem with the checking of the textures if they are already in the array.

Something like
Code:
    For i = 0 To ((UBound(texture_array)) - 1)
        If current_texture = texture_array(i) Then
           texture_exists = True
           Exit For
        End If
    Next i
doesn´t work, would make it too easy .

Thx in advance.