Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


rotationAxis

The axes affected by the AimConstraint.
Read time 1 minuteLast updated 7 days ago

Definition

public Axis rotationAxis { get; set; }

Remarks

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

Examples

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