ParentConstraint.translationAxis

public Animations.Axis translationAxis;

Description

The translation axes affected by the ParentConstraint.

Use this property to restrict the translation of the constrained object on a particular axis.

using UnityEngine.Animations;

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

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