Hello,
i'm wondering if you could add a return value for setObjectTexture and setObjectTextureGlobal, which would be true or false when the texture is found or not.
At the moment we get a warning like this one :
```
Warning Message: Picture textures\gangs\16.paa not found
```
I would like to able to do something like this :
```
_check = _obj setObjectTextureGlobal [0,"Textures\gangs\16.paa"];
if(_check) then {
// texture ok, do something
} else {
// texture not found, do something else
};
```