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"

Author Topic: WIP - Music Box Carousel  (Read 1727 times)

jwalt

  • Jr. Member
  • **
  • Posts: 80
    • View Profile
WIP - Music Box Carousel
« on: January 11, 2026, 12:38:06 pm »



Can't quite figure out a method to make the horses go up and down. Suggestions?

May have encountered an issue with 1403. Kept dumping me back to the desktop when I tried to export the sequence (the posed pony) as a 3ds to reimport and add to the crown object. That may not have been the best approach, but it's the one I settled on. I had to go back to 0.98 version, which had no problem making the 3ds file. FWIW, it's proving hard to go back to the 0.98 version after working with 1403 for a while.  Thanks, Steve! You really have improved your program.
Logged

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2134
    • View Profile
Re: WIP - Music Box Carousel
« Reply #1 on: January 14, 2026, 04:41:59 pm »

Nice!
Logged

neirao

  • Sr. Member
  • ****
  • Posts: 632
  • Neirao
    • View Profile
Re: WIP - Music Box Carousel
« Reply #2 on: January 24, 2026, 10:57:40 am »

I remember that you can use script activation on objects, and use the timeline to move, rotate, etc., the objects.

For example, the code from the ASL manual:
"A Controller expression script Here is a script for an element's size controller:
$scale = 1 + sin(time*PI*4)*0.5;
The size of the element oscillates between 0.5 and 1.5 every 2 seconds.

Then you could do an up and down movement, in a loop, something like:
// Movement with easing (slower at the extremes)
float posY = offset_y + amplitude * (sin(2 * PI * time / period) * 0.5 + 0.5);
Logged

neirao

  • Sr. Member
  • ****
  • Posts: 632
  • Neirao
    • View Profile
Re: WIP - Music Box Carousel
« Reply #3 on: January 24, 2026, 11:01:12 am »

PS: This link show how use the "Editing Expressions" and timeline time:


https://www.anim8or.com/learn/manual/8_animation.html
Logged