Yes the call back was the key, before each rendered frame it gets called and updates the maps. You are looking to do exactly what we did with Pinky Dinky Doo http://archive.sesameworkshop.org/pinkydinkydoo/ this page is still the original flash stuff but the Max stuff looks better and was more flexible. I don’t think that it has all been released as of yet. The character is made entirly of flat planes with swapping textures on them. The rig allowed us to bend parts of the body but if a character does something like a turn around it is done by swapping textures and repositioning parts of the body. So the system that is setup not only switches textures but also move and rotates objects into the right place for each pose.
that looks a good system paul. We are constantly developing flat animated systems and in the past have used the material modifer technique. How many tween images are you swapping for example on a left/right body turn?
Left to right is about 7 I think, not supposed to be smooth, might have only been 5.
ah good, we were doing about the same, we always found moves on flat characters worked better if they were done quicker anyway. So if i wanted to build a basic material, could i inherit a standard material but add a string tab parameter to store paths to texture maps? then like your technique, could you use an animated variable to link the number with the string tab index? that way the callback could change the map based on the filepath?
i have got to say as well paul, you have to love a UI with a button that says “Do Not Press” on it!
I would have to go back and look but I think that is exactly what I was doing if you were streaming the maps off the drive. If you were caching them it used a map tab. The caching was used for viewport speed and we could switch between hi and low res maps so that scrubbing was fast. Because of the amount of maps that we had I had to do some tests to see if I should update the maps, for instance if you scrubed fast it would not update all the frames that you scrubed over so that it would not slow down. I based this on a timeStamp and set a minimum time value. You could also turn off parts or all of a character from updating in the viewport so if there were several characters in a scene then it wouldn’t update the ones that you were not working with at the time.
The Do Not Press button in this case didn’t do much but I often add these and then write the user name to a file on the net work with a time stamp to see who doesn’t follow directions, almost always it is every one in the production at one time or another. Another that I did on this production was in the project tracking system that I setup, if you selected help from the help menu a message box popped up asking if you wanted to format your C: drive, picking yes or no fired off another dilaog with a progress bar that gave you feed back on the formating of your drive. I gather, since I work out of my own office and not theirs, that just about every one at some point had a hart attack when they pressed it including the owner of the company. I wouldn’t have done this if they were not really good clients.
I have been given the go ahead from the client to do a technical write up on the project showing the tool sets and work flow that was used. I have been told not to show to much but I’m sure every one will get the idea of what is possible with how I set it up. Was a fun project because it looks so simple but it turns out to be hard because it doesn’t really fit with what is supposed to be 3D.
Hi Paul,
sound great, and would be a huge help to hear a bit about the process. I haven’t done much in the way of material plugin writing so this is a great help.
I think i get it, so bear with my theory ramblings! im thinking you could have a checkbox linked to a boolean parameter that acts a toggle between streaming the maps and caching them into texturemap tab. so you have a stringtab, and a texturemap tab that is populated depending on the state. I was thinking that a material could dynamically load from a listbox/listview or just provide, say 10 map/path slots in the material. since the tween would be short that might be enough.
i am thinking of extending the standard material, that way i can load the opacity channel with any tgas loaded to the diffuse too.
also,with the prerender callback, are you cycling through the scenematerials and calling the bitmaptexture reload() method to make sure they are at the correct frame?
thanks, Pete
yes sorry it was a Standard material that I expended, I started with a test using an extended bitMap but that was more work.
If you looka t the UI I have you can see that I used a radio button for the stream or cache. You can also see the real time updates settings for the material as well. This could be controlled globaly with macro scripts as well. The Map Index is what is animated and relates directly to the index in the string/Map tab. The Select Driver button allowed you to set the track that would drive the Map Index and this was in the modifier that was created.
The modifier is where most of the work was done. It had a CA Def on it where tracks could be added that would be driven by the modifier, those tracks could be anything like the position of an object, the visibility or the map ID that would be loaded in the material. To create a new setting you could just tweek the attributes in the Attributes rollout by just scrubbing on the list items and then save it as a new setting to a group of poses that show up in the Pose rollout. I stored this to some sort of external file, might have been XML, would have to look. Later in production this was set to load automaticaly every time the file was opened so that every on got the new settings as they were created. You can also see the material connections, this connects the modifier to the material so that it knows what it is driving and can call updates on the maps. This is so when a pose was picked in the pose list the modifier could call the updates in the materials that it was driving. At least I think this was the reason, would have to go back and look. Just checked, yes it was as well as just controlling other properties of the maps from the modifier for simpler usage by the animator.
that is awesome Paul. Could you explain about the map driver setup? im assuming you can bind that to a controller of a CA slider? how do you store this driver controller up in the plugin material? via a node parameter?
I think that it just instanced the controller over to the Map Index, nothing fancy. Just made it easier for setting up the characters.