🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

engine textures

Started by
0 comments, last by Blizz 24 years ago
I''m still working on my engine and it''s going very well, but I am now at the point I want to add some more textures.. The NEHE tutorial on textures uses only _1_ texture, but my engine will have at least 30 and I don''t know how to manage all these textures efficiently... Please give me some tips! Blizz
Advertisement
Why don''t you make an array to hold the textures number??
you want 30 textures..

GLuint texture[30];

in the Bind and gentexture, use texture

hope this helps

Bruno

This topic is closed to new replies.

Advertisement