I’m drawing triangles and they’re invisible from the view they should be visible, so how can I flip the direction?
Thanks
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.
Invert the vertex order in the vertex or index buffer. Or change the backface culling settings. E.g. set the
CullModeof theRasterizerStatetoCullMode.None.Additionally, make sure that there are no problems with lighting that make your triangles black / invisible.