AtavismWeaponIKTarget
Overview:
This C# code file contains the implementation of the AtavismWeaponLookAtTarget and AtavismWeaponIKTarget classes. These classes are used in the Atavism game engine to control the movement of characters’ hands and feet, and their ability to look at a specified point.
Interface Pages:
- AtavismWeaponLookAtTarget: A public class that extends the MonoBehaviour class. It is used to control the character’s ability to look at a specified point.
- AtavismWeaponIKTarget: A public class that extends the MonoBehaviour class. It is used to control the movement of characters’ hands and feet.
Constructor Pages: None
Method Pages:
- OnDisable(): A private method that is called when the script is disabled. It clears the reference to the AtavismMobIKSystem and the IK targets.
- Update(): A private method that is called every frame. It sets the references to the AtavismMobIKSystem and the IK targets.
Property Pages:
- AtavismWeaponIKTarget.parentAtavismMobIKSystem: A private variable that holds a reference to the parent AtavismMobIKSystem component.
- AtavismWeaponIKTarget.systemActivated: A private variable that determines if the IK system is activated.
- AtavismWeaponIKTarget.lookAtPoint: A public Transform variable that holds the Transform of the point the character should look at.
- AtavismWeaponIKTarget.enableLookAt: A public bool variable that determines if the character should look at a specified point.
- AtavismWeaponIKTarget.lookatEnabled: A private bool variable that determines if the look-at feature is enabled.
- AtavismWeaponIKTarget.atavismWeaponIKTargetType: A public enum variable that specifies the type of IK target.
Event Pages: None
Concept/Guide Pages: None
Examples: None