Nice model and animations!
What's not so nice: You are using a 1024x1096 texture.
Memory-wise, this is the same as a 2048x2048...
Always use powers of 2 !!
You are completly wasting about 12mb(!) of texture memory by doing this. Those 12mb could hold 60(!) 256x256 images. Remember, memory usage goes up exponentially with every next step. For someone playing with a 64mb card or even less, this is sheer nightmare.
Seeing how you only use about 35% of the image as actual skin, this is even more wasteful. You could arrange all that on a 512² and save heaps of texture memory, without any quality loss..
I would think about adding this model to the game, but not in it's current state.
What's not so nice: You are using a 1024x1096 texture.
Memory-wise, this is the same as a 2048x2048...
Always use powers of 2 !!
You are completly wasting about 12mb(!) of texture memory by doing this. Those 12mb could hold 60(!) 256x256 images. Remember, memory usage goes up exponentially with every next step. For someone playing with a 64mb card or even less, this is sheer nightmare.
Seeing how you only use about 35% of the image as actual skin, this is even more wasteful. You could arrange all that on a 512² and save heaps of texture memory, without any quality loss..
I would think about adding this model to the game, but not in it's current state.