-
I'm new to this engine and I think it's great. I want to use it to implement some graphics algorithms from a paper, but when I tried to use normal mapping, I found that there is no TANGENT value in the VertexField enumeration. Is there another way to achieve this or will this feature be supported in the future? Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I'm very sorry, I posted it in the wrong place. |
Beta Was this translation helpful? Give feedback.
-
Hello @yillis! Great to hear that you like Methane Kit framework and plan to use it for prototyping. |
Beta Was this translation helpful? Give feedback.
Hello @yillis! Great to hear that you like Methane Kit framework and plan to use it for prototyping.
VertexField
enum is a part of a simple procedural Mesh generation library used in tutorial applications. Currently this "Mesh" library supports only limited use cases from tutorials and it should to be extended to loading mesh data from external file formats in future. If you want to add tangent data to the existing mesh generators in this library, you can do it in your fork and then create pull request in main repository for back merge. Alternatively, you may decide to use some external mesh loading library like Assimp and feed raw mesh data to Methane Buffers.