#1
|
|||
|
|||
Simplifying Avatars
I finally got my avatars walking in my scene. I recorded paths and let them walk along it with many randomly chosen variables, to let it look like they walk themselves.
But the next problem is the rendering time. With 200 avatars in the scene, the Cull-time is very high. Are there simpler versions of avatars I can use, so the rendertime is shortened and framerate increases? Last edited by JvdBosch; 09-20-2006 at 03:49 AM. |
#2
|
|||
|
|||
Try looking on the web for avatar models that fit your super low polly needs. Model dealers like www.turbosquid.com are a good place to start.
__________________
Paul Elliott WorldViz LLC |
#3
|
|||
|
|||
there is a new product that WorldViz is going to introduce shortly which is called "Vizard Complete Characters". this is a collection of 100 different characters which are each modeled in 3 different poly counts. this makes it possible to easily make a project containing a 'crowd' of avatars as the polycount for the avatars can be greatly reduced with distance.
"Vizard Complete Characters" sells for $3199 for the full package of 100 different avatars which also includes the complete 3DMax files etc.. Marketing material can be provided upon request and will be on the webpage shortly. For more info, please contact sales@worldviz.com. |
#4
|
|||
|
|||
Thanks for the info, but that's a bit expensive for me
I'll try to find something on the web. |
#5
|
|||
|
|||
By default, Avatars are updated every frame. This update involves recalculating the entire mesh of the avatar. This is why your cull time is so high. There is an option in Vizard that will control how often an avatar is updated. Example:
Code:
avatar.updaterate(0.1) #Update the avatar every 0.1 seconds |
#6
|
|||
|
|||
Thanks! This helps to increase framerate!
|
|
|