|
| Animate Camera |
 |
Mon, 12 May 2008 05:16:14 -070 |
Hi all
Is there a way to view an animated camera so I can create a walk through
animation? I can animate objects and save as a U3d file, but when I animate the
camera, there seems to be no options to view through the camera when the file is
placed as a 3d element in a standard in a pdf page.
|
| Post Reply
|
| Re: Animate Camera |
 |
Mon, 23 Jun 2008 06:00:02 -070 |
|
| Post Reply
|
| Re: Animate Camera |
 |
Thu, 3 Jul 2008 02:47:30 -0700 |
Hi Guys, I believe this walk through is improved in Acro 9 Pro eXtended.
Animation data seems to import into Acro Ok via ASCII. Export out of MAX as a
ASE file (turn on animation options bottom left) Cheers
|
| Post Reply
|
| Re: Animate Camera |
 |
Thu, 3 Jul 2008 04:07:52 -0700 |
Hi,
I could animate the camera by setting the correct camera to the canvas using
javascript (by default the camera of the viewer is active). To do this you need
to define a render event handler (which is detached after it was hit once). Try
something like this:
renderEventHandler.onEvent = function( event )
{
runtime.removeEventHandler(this);
camera = scene.cameras.getByIndex(x);
event.canvas.setCamera(camera);
};
hope this helps!
|
| Post Reply
|
| Re: Animate Camera |
 |
Tue, 8 Jul 2008 21:06:13 -0700 |
Hi Felix,
I am using the same method to create camera, First I captured the positions
for the camera using some methods and after that set those positions to the
canvas's camera..That working.. But there is a problem in movement between
cameras..Its not animating smoothly as like the views in the model tree,while am
switching between cameras the next view is showing immediatly after the previous
one without any smoothness in the movement..Is there any way to solve this
problem??
|
| Post Reply
|
|
|
|
|
|
|
|
|
|