I have a big texture, 256*256 there is 64*64 pixel textures on it. How I can cut it, and use as a texture?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just draw with the correct texture coordinates, for example, to draw a quad from (0,0) to (64,64) from the texture, use texture coords (0,0) to (64 / 256.0, 64 / 256.0)