Reputation: 99
I need load a 3d model with animation in a project, but I don't find how load those models, only .obj, but they obj models not have animation. The app isn't a game, is a normal app but in one section have the animated avatar, and I need change textures like the hair color, color of skin, etc.
Upvotes: 3
Views: 2038
Reputation: 1066
Android SDK including NDK doesn't even load OBJ files.
or
You can change dynamic variables like color of skin or hair by passing vertices as color vertices corresponding to the position vertices, and then you can process the data in the shader code.
Upvotes: 1