Manually rotate joints using quaternion input

Started by nikola, October 20, 2013, 10:15:35 PM

Previous topic - Next topic

raft

you cannot have multi textures on a single Animated3D, unless of course you know id's of polygons which belong to a specific texture and set them manually.

but you can export your model from MakeHuman (if it supports that) as seperate objects each with a different texture. ie: the body is a different object, the skirt is another, boots are another so on. bones can load such group of objects, just like the one in ninja demo.

for multi-threaded sw renderer, there is nothing special in enabling it. just set in the beginning of your program:
Config.useMultipleThreads=true;
Config.maxNumberOfCores=Runtime.getRuntime().availableProcessors();


if required you can also run bones' animation code multi-threaded, but remember bones is not thread safe. I believe syncronizing on SkeletonPose is enough for multi-threading.