12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using UnityEngine;
- using System.Collections;
- namespace RootMotion.FinalIK {
-
-
-
- [HelpURL("http://www.root-motion.com/finalikdox/html/page2.html")]
- [AddComponentMenu("Scripts/RootMotion.FinalIK/IK/Arm IK")]
- public class ArmIK : IK {
-
- [ContextMenu("User Manual")]
- protected override void OpenUserManual() {
- Application.OpenURL("http://www.root-motion.com/finalikdox/html/page2.html");
- }
-
-
- [ContextMenu("Scrpt Reference")]
- protected override void OpenScriptReference() {
- Application.OpenURL("http://www.root-motion.com/finalikdox/html/class_root_motion_1_1_final_i_k_1_1_arm_i_k.html");
- }
-
-
- [ContextMenu("Support Group")]
- void SupportGroup() {
- Application.OpenURL("https://groups.google.com/forum/#!forum/final-ik");
- }
-
-
- [ContextMenu("Asset Store Thread")]
- void ASThread() {
- Application.OpenURL("http://forum.unity3d.com/threads/final-ik-full-body-ik-aim-look-at-fabrik-ccd-ik-1-0-released.222685/");
- }
-
-
-
- public IKSolverArm solver = new IKSolverArm();
-
- public override IKSolver GetIKSolver() {
- return solver as IKSolver;
- }
- }
- }
|