Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Richter BelmontКак увеличить диапазон вращения глаз
#1
To achieve this, we gonna "desactivate" the "I-don't-know-what/why-freaking-thing-that-take-control-over-our-character-eyes".
By doing this, the right-click "look at" menu will no more affect the eye. (but will still affect the head)
Pose using the right-click "look at" menu are the default game pose and/or pose edit made with the Head Rotation checkbox checked.

The file to mod:
\Scenes\Shared\Body\anim01.bs

First, we need to find the "Model01:eye_orient_face_editor" TTransform and create after it an L and R Transform node variant that will be using it as parent.
Note:
"Model01:eye_orient_face_editor" is the pose edit lookat target.
 Each eye will get their own variant and will be able aim indepently. (but we need to add pose edit track for using them)
 Since "Model01:eye_orient_face_editor" is the parent of the L/R variant, they will move with it.
  == only using "Model01:eye_orient_face_editor" will be the same as if both eye had the same target.

Code:
TTransform :local_56346 . {[/color]
[color=#000000]TNode.SNode STransform :local_1685;[/color]
[color=#000000]TNode.Parent TJoint :local_41160;[/color]
[color=#000000]Object.Name "Model01:eye_orient_face_editor";[/color]
[color=#000000]};[/color]
[color=#000000]TTransform :local_eye_L_orient_face_editor . {[/color]
[color=#000000]TNode.SNode STransform :local_Seye_L_orient_face_editor;[/color]
[color=#000000]TNode.Parent TTransform :local_56346;[/color]
[color=#000000]Object.Name "Model01:eye_L_orient_face_editor";[/color]
[color=#000000]};[/color]
[color=#000000]STransform :local_Seye_L_orient_face_editor Object.Name "Model01:Seye_L_orient_face_editor";[/color]
[color=#000000]TTransform :local_eye_R_orient_face_editor . {[/color]
[color=#000000]TNode.SNode STransform :local_Seye_R_orient_face_editor;[/color]
[color=#000000]TNode.Parent TTransform :local_56346;[/color]
[color=#000000]Object.Name "Model01:eye_R_orient_face_editor";[/color]
[color=#000000]};[/color]
[color=#000000]STransform :local_Seye_R_orient_face_editor Object.Name "Model01:Seye_R_orient_face_editor";



Then we need to find the "Model01:eye_L_group_aimConstraint1"AimConstraint and create a copy of it but with slight difference.

Code:
AimConstraint :local_43174 . {[/color]
[color=#000000]AimConstraint.AimVector Vector3f( 0, 0, -1 );[/color]
[color=#000000]AimConstraint.UpVector Vector3f( 1, 0, 0 );[/color]
[color=#000000]AimConstraint.UpTarget TJoint :local_43176;[/color]
[color=#000000]Constraint.TargetArray [ TTransform :local_43177 , TTransform :local_43178 , TTransform :local_43179 , TTransform :local_43180 ];[/color]
[color=#000000]Constraint.WeightArray Array_F32 [ 1, 0, 0, 0];[/color]
[color=#000000]Object.Name "Model01:eye_L_group_aimConstraint1";[/color]
[color=#000000]};[/color]
[color=#000000]AimConstraint :local_eye_L_group_aimConstraint2 . {[/color]
[color=#000000]AimConstraint.AimVector Vector3f( 0, 0, -1 );[/color]
[color=#000000]AimConstraint.UpVector Vector3f( 1, 0, 0 );[/color]
[color=#000000]AimConstraint.UpTarget TJoint :local_43176;[/color]
[color=#000000]Constraint.TargetArray [ TTransform :local_eye_L_orient_face_editor ];[/color]
[color=#000000]Constraint.WeightArray Array_F32 [ 1];[/color]
[color=#000000]Object.Name "Model01:eye_L_group_aimConstraint2";[/color]
[color=#000000]};



Do the same for "Model01:eye_R_group_aimConstraint1" AimConstraint.


Code:
AimConstraint :local_43175 . {[/color]
[color=#000000]AimConstraint.AimVector Vector3f( 0, 0, 1 );[/color]
[color=#000000]AimConstraint.UpVector Vector3f( 1, 0, 0 );[/color]
[color=#000000]AimConstraint.UpTarget TJoint :local_43176;[/color]
[color=#000000]Constraint.TargetArray [ TTransform :local_43177 , TTransform :local_43178 , TTransform :local_43179 , TTransform :local_43180 ];[/color]
[color=#000000]Constraint.WeightArray Array_F32 [ 1, 0, 0, 0];[/color]
[color=#000000]Object.Name "Model01:eye_R_group_aimConstraint1";[/color]
[color=#000000]};[/color]
[color=#000000]AimConstraint :local_eye_R_group_aimConstraint2 . {[/color]
[color=#000000]AimConstraint.AimVector Vector3f( 0, 0, 1 );[/color]
[color=#000000]AimConstraint.UpVector Vector3f( 1, 0, 0 );[/color]
[color=#000000]AimConstraint.UpTarget TJoint :local_43176;[/color]
[color=#000000]Constraint.TargetArray [ TTransform :local_eye_R_orient_face_editor ];[/color]
[color=#000000]Constraint.WeightArray Array_F32 [ 1];[/color]
[color=#000000]Object.Name "Model01:eye_R_group_aimConstraint2";[/color]
[color=#000000]};



Find "Model01:eye_L_group" TTransform and replace its AimConstraint by the one you previously made.


Code:
TTransform :local_56458 . {[/color]
[color=#000000]// TBaseTransform.ConstraintArray [ AimConstraint :local_43174 ];[/color]
[color=#000000]TBaseTransform.ConstraintArray [ AimConstraint :local_eye_L_group_aimConstraint2 ];[/color]
[color=#000000]TNode.SNode STransform :local_56459;[/color]
[color=#000000]TNode.Parent TJoint :local_56456;[/color]
[color=#000000]Object.Name "Model01:eye_L_group";[/color]
[color=#000000]};[/color]

[color=#000000]The same go for"Model01:eye_R_group" TTransform.[/color]

[color=#000000]TTransform :local_56474 . {[/color]
[color=#000000]// TBaseTransform.ConstraintArray [ AimConstraint :local_43175 ];[/color]
[color=#000000]TBaseTransform.ConstraintArray [ AimConstraint :local_eye_R_group_aimConstraint2 ];[/color]
[color=#000000]TNode.SNode STransform :local_56475;[/color]
[color=#000000]TNode.Parent TJoint :local_56472;[/color]
[color=#000000]Object.Name "Model01:eye_R_group";[/color]
[color=#000000]};



There you simply need to find the "Model01:Seye_L_group" Stransform and ajust the RotationMin/Max.
Note:
The eye mesh is not a complete "sphere" but only the half of it.
 If the eye rotate too much, your character gonna look like having incomplete (and/or even no eye at all) at some point.
 So if you don't have limit rotation on it, the eye gonna rotate too much (can literally cause 180 flip)
If the rotation on X and Y make sense (up/down, left/right)...
 I can't see how the one on Z is humanly possible! ( = you should really let z rotation limit at 0)
With my value, left/right(Y) rotation cause a little part of the eye missing when it reach min and/or max but not enought to notice it.
 If we give Y rotation min/max so there is no eye part missing...
 the eye reach will be too limited and not go as far NC requested.


Code:
STransform :local_56459 . {[/color]
[color=#000000]SSimpleTransform.Translation Vector3f( 0.008, 0.001, 0.012 );[/color]
[color=#000000]SSimpleTransform.Scaling Vector3f( 1.05, 1.05, 1.05 );[/color]
[color=#000000]SSimpleTransform.RotationLimitEnableMask U32(63);[/color]
[color=#000000]// SSimpleTransform.RotationMin Vector3f( -30, -20, -100 );[/color]
[color=#000000]SSimpleTransform.RotationMin Vector3f( -30, -50, 0 );[/color]
[color=#000000]// SSimpleTransform.RotationMax Vector3f( 30, 20, -80 );[/color]
[color=#000000]SSimpleTransform.RotationMax Vector3f( 30, 30, 0 );[/color]
[color=#000000]Object.Name "Model01:Seye_L_group";[/color]
[color=#000000]};



Same go for "Model01:Seye_R_group" Stransform.


Code:
STransform :local_56475 . {[/color]
[color=#000000]SSimpleTransform.Translation Vector3f( -0.008, -0.001, -0.012 );[/color]
[color=#000000]SSimpleTransform.Scaling Vector3f( 1.05, 1.05, 1.05 );[/color]
[color=#000000]SSimpleTransform.RotationLimitEnableMask U32(63);[/color]
[color=#000000]// SSimpleTransform.RotationMin Vector3f( -30, -20, 80 );[/color]
[color=#000000]SSimpleTransform.RotationMax Vector3f( 30, 30, 0 );[/color]
[color=#000000]// SSimpleTransform.RotationMax Vector3f( 30, 20, 100 );[/color]
[color=#000000]SSimpleTransform.RotationMin Vector3f( -30, -50, 0 );[/color]
[color=#000000]Object.Name "Model01:Seye_R_group";[/color]
[color=#000000]};

[To see links please log-in or register here]

Reply




Users browsing this thread: 1 Guest(s)
Copyright: Roy's website was started on September 3, 2013. We been on-line over 10 years and going strong.
WARNING: ADULT CONTENT: You must be 18 years of age or older to view this website.