Anim8or Community

Please login or register.

Login with username, password and session length
Advanced search  

News:

Ian Ross has just released a book on Anim8or. It's perect for a beginner and a good reference for experienced users. It contains detailed chapters on every aspect, with many examples. Get your own copy here: "Anim8or Tutorial Book"

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Pirmin

Pages: [1]
1
General Anim8or Forum / Re: combine camera views in a movie
« on: November 01, 2008, 07:35:24 am »
For the case that somebody likes to know how I finally implemented the PIP stuff, here it is.
- Render Movie as BMP for the desired views.
- Crop the images for the small film (I used IrfanView - Batch conversion/rename).
- Copy the small images over the large ones (Login to see the attached C# program).
- Make an AVI with VirtualDub.
  - File - Open video file : select the first picture of the series
  - Audio - No audio
  - Video - Frame Rate - Change frame rate to (fps): 24
  - Video - Compression - DivX - 1 pass - quality based
  - File - Save as AVI

2
General Anim8or Forum / Re: Set a specific view to a view pane
« on: November 01, 2008, 03:40:08 am »
Thank you!
This works good with the 4 panes view (Scene Mode).
When I try to do it with 2 Views, it always changes to a single view (perhaps my operation error?).
However I found a workaround to set 2 Views as desired, following your advice.
In the 4 panes view I set my desired two views to the upper two panes and the same two views to the lower panes.
After that, when I change to 2 Views, my desired two views are displayed.

3
General Anim8or Forum / Set a specific view to a view pane
« on: October 31, 2008, 02:58:21 am »
Is it possible to set a specific view to a view pane?
When I choose 2 Views, the Front is displayed on the left side and the Top Views displayed on the right side.
Sometimes I would like have different views displayed, for instance the Top view on the left side and the Camera View on the right side.

4
General Anim8or Forum / Re: combine camera views in a movie
« on: October 14, 2008, 04:52:38 pm »
A very interesting idea indeed!
Because I have very little experience and also little spare time, first I must try the simple ways.
Maybe later on I might try the more sophisticated solution.
Thank you anyway!

5
General Anim8or Forum / Re: combine camera views in a movie
« on: October 14, 2008, 01:51:41 am »
Thank you both. I will try the softwares and see which one suits me more.

6
General Anim8or Forum / combine camera views in a movie
« on: October 13, 2008, 06:12:51 pm »
Is it possible to combine two or more camera views in the same movie?
I would like to have a kind of PIP (Picture in Picture), a small view which shows the whole terrain from top view and the rest of the screen which shows a perspective view with more details.

7
ASL Scripts / Re: Object must always look ahead
« on: October 13, 2008, 03:44:03 pm »
To solve my problem I have used key frames for animation as proposed by Kubajzz.
Therefore I don't need the feature "look ahead".
But I think it could be usefull in future for me and for others.

8
ASL Scripts / Re: Object must always look ahead
« on: October 11, 2008, 05:24:59 am »
I have tried a lot.
  • Relative to Parent -> Vehicle is allways looking to Z direction
  • Relative to Path -> Vehicle is allways looking to X direction
  • Relative to Other, Path -> Error: No such element
  • Relative to Facing Other, Path -> Error: No such element
???

9
ASL Scripts / Re: PI is wrong?
« on: October 11, 2008, 05:06:17 am »
Sorry, I had an old version (0.95c).
With the newest version it's OK.
Thank you!

10
ASL Scripts / Object must always look ahead
« on: October 11, 2008, 04:38:35 am »
I have a vehicle the does some movements (I start with a circle).
My vehicle always should look ahead where it is moving to.
I will write the Location Controllers to do more movements (e.g. lines, curves, ...) depending on the current frame.
I could in parallel write Orientation Controllers to set the desired orientation at any location.
Isn't there a way to just write a single Orientation controller which always assures that the orientation stays ahead?

11
ASL Scripts / PI is wrong?
« on: October 11, 2008, 03:59:49 am »
I have a Scene with 720 Frames where I want a vehicle to do a circle movement.
The Location controller looks like this.
Code: [Select]
float $radius;
float $radian;

$radius = 450.0;
$radian = 2*PI * frame/720.0;  /* not reduced for clarity */

$position.y = 7.0;
$position.x = $radius * cos($radian);
$position.z = $radius * sin($radian);
When I run this scene the vehicle does the circle movement but stops about 10 degrees before closing the circle! :'(

When I define an own variable $pi the vehicle moves the full circle.  ;)
Here is my modification.
Code: [Select]
float $radius;
float $radian;
float $pi;

$pi = 3.1415926;
$radius = 450.0;
$radian = 2*$pi * frame/720.0;  /* not reduced for clarity */

$position.y = 7.0;
$position.x = $radius * cos($radian);
$position.z = $radius * sin($radian);

Pages: [1]