Is there any way to control a character made with Adobe CS4 Bone Tool via keyboard buttons? Its limbs are linked up by IK chains built by Bone Tool.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
import fl.ik.*;
use
IKArmature
IKBone
IKJoint
IKMover
addEventListener(keyboardEvent.KEY_DOWN, keyDownHandler); function keyDownHandler(event:Event){ if (event.keyCode == Keyboard.UP) { // do your magic with IKMover moveTo() method } }