Version: 2021.1
언어: 한국어
public Animations.Axis rotationAxis ;

설명

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; } }