The most boring animation you have ever seen
Posted: Wed Jul 30, 2008 7:52 am
In my attempt to make some movie with Maxwell, i have tried this morning to set up a turntable animation, here the result:
DivShare File - anim-Desktop.m4v...it's the new Apple advertisement, just miss the music
Sorry to make you waste your time (for the people who have watched it)
...anyway, i want to complain a little bit about the lack of information and tutorial to setup this kind of project. I have spend around 2 hours to try to figure out how to make all this work. I have read the thread about Bongo working with Maxwell, i have read the help file from JD but couldn't find a clear and explicit step by step. But finally i made it work. So take care Pixar and Dreamworks, hyltom mega production is coming
So for people who want to make some animation:
1.download and install "Maxwell Script 1.6.0 (x86)"....i had no idea i had to do this.
2.create a new button with the following script link to it :
part of this code is given by JD but why not give the complete version usable directly from a button in rhino??? not everyone know how to use a script in rhino.
3.setup the Bongo animation (keyframe)
4.setup the Maxwell scene
5.When you think everything is ready, just click the button you have created on step 2 but don't forget to change the keyframe number.
It's a short help but if i knew the step 1 and 2, I could have setup this animation in 10 minutes.
Finally I have some question. Is it possible to export only the mxs of an animation? if yes how to do it? Then how to batch render those mxs in differents computers? Is there a function in maxwell to do that?
DivShare File - anim-Desktop.m4v...it's the new Apple advertisement, just miss the music

Sorry to make you waste your time (for the people who have watched it)



So for people who want to make some animation:
1.download and install "Maxwell Script 1.6.0 (x86)"....i had no idea i had to do this.
2.create a new button with the following script link to it :
Code: Select all
where i=frames you want to render.! _-Runscript (
Rhino.Command("! _Maxwell_BeginAnimation")
For i = 0 To 99
Rhino.Command "_BongoSetSliderPosition "& i
Rhino.Command("_Render")
Rhino.Command("_ClearUndo")
Next
Rhino.Command("_Maxwell_EndAnimation")
)
part of this code is given by JD but why not give the complete version usable directly from a button in rhino??? not everyone know how to use a script in rhino.
3.setup the Bongo animation (keyframe)
4.setup the Maxwell scene
5.When you think everything is ready, just click the button you have created on step 2 but don't forget to change the keyframe number.
It's a short help but if i knew the step 1 and 2, I could have setup this animation in 10 minutes.
Finally I have some question. Is it possible to export only the mxs of an animation? if yes how to do it? Then how to batch render those mxs in differents computers? Is there a function in maxwell to do that?