Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

AimConstraint.rotationAxis

public Animations.Axis rotationAxis;

Description

The axes affected by the AimConstraint.

Use this property to restrict the effect of the constraint on a particular axis.

using UnityEngine.Animations;

public class ConstraintAxis { public void ConstrainOnlyOnXY(AimConstraint component) { component.rotationAxis = Axis.X | Axis.Y; } }

Did you find this page useful? Please give it a rating: