Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ParentConstraint.rotationAxis

public Animations.Axis rotationAxis;

Description

The rotation axes affected by the ParentConstraint.

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

using UnityEngine.Animations;

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

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