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: Three questions about the scene editor.  (Read 7351 times)

BladeMan.EXE

  • Jr. Member
  • **
  • Posts: 69
  • Battle Routine, Set!
    • View Profile
Three questions about the scene editor.
« on: March 26, 2015, 11:34:51 am »

1. Is there a way to attach an object to a bone in a figure? Like a character picking up an object or wielding a sword?

2. Is there a way to animate the texture on an object? Like the screen on a TV or an I Phone?

3. Is there an easy way to remove an object and place a near identical object in it's place? (This being plan b for if the answer to question 2 is no.)
Logged

thecolclough

  • Sr. Member
  • ****
  • Posts: 890
  • 3D Ignoramus 1988-2002, Anim8or User 2002-present.
    • View Profile
    • www.mattghc.com
Re: Three questions about the scene editor.
« Reply #1 on: March 26, 2015, 11:57:17 am »

the answers to all three of your questions will probably involve visibility keyframes.

1. the usual method in Anim8or is as follows: you start the scene with the figure and the prop object as two separate elements, and then at the point where the character picks up the prop, you use visibility keyframes to hide both of these and swap to an alternate version of the figure which is holding the prop.  can be fiddly to match up the keyframes for the character's pose, but i think (not 100% sure) there might be scripts floating around which can help with that.

2. not at present - you have to set up different versions of the object with different textures, and again use keyframes to swap between them.

3. if you want the item to move around, then you might want to consider attaching both versions to a target, and animating the position/orientation of the target.  both prop versions will automatically follow the target's movement.  alternatively, depending on the type of change, you might want to look at using morph targets.
Logged

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2126
    • View Profile
Re: Three questions about the scene editor.
« Reply #2 on: March 26, 2015, 12:31:39 pm »

1. Not yet :) This is one of the things I'll be adding to the scene editor later on and part of the next major release. I don't know the release date yet.

3. You can animate the visibility of things.  If you put two or more identical objects but with, say, a different texture on them, you can hide one and show the other, then switch. If you want to change every frame you can do this with a script for their visibility (so you don't have to set a ton of keys):

$visibility = frame & 1; /* First object - hidden in even frames, visible in odd frames */
$visibility = (frame + 1) & 1; /* Second object */
Logged

captaindrewi

  • Sr. Member
  • ****
  • Posts: 490
  • errm...errr?
    • View Profile
Re: Three questions about the scene editor.
« Reply #3 on: March 26, 2015, 02:14:50 pm »

re 2. yes.if i understand your request correctly.

backward engineer the enclosed file :)
Logged
!

BladeMan.EXE

  • Jr. Member
  • **
  • Posts: 69
  • Battle Routine, Set!
    • View Profile
Re: Three questions about the scene editor.
« Reply #4 on: March 26, 2015, 02:48:52 pm »

re 2. yes.if i understand your request correctly.

backward engineer the enclosed file :)


Kind of a big file by my internet's standards, and I can't use scripts with the version I'm using. Thanks anyway.


And thanks for the tip about using targets.
Logged

neirao

  • Sr. Member
  • ****
  • Posts: 624
  • Neirao
    • View Profile
Re: Three questions about the scene editor.
« Reply #5 on: March 26, 2015, 06:17:27 pm »

2. Is there a way to animate the texture on an object? Like the screen on a TV or an I Phone?

Logged