Exemplo n.º 1
0
        public AnimationManipulatorState createMandibleState()
        {
            AnimationManipulatorState state = new AnimationManipulatorState();

            foreach (SimElement element in Owner.getElementIter())
            {
                AnimationManipulator manipulator = element as AnimationManipulator;
                if (manipulator != null)
                {
                    state.addPosition(manipulator.createStateEntry());
                }
            }
            return(state);
        }
Exemplo n.º 2
0
 public AnimationManipulatorStateEntry createStateEntry()
 {
     return(manipulator.createStateEntry());
 }