xxxxxxxxxx
using UnityEngine;
public class QuaternionClamping : MonoBehaviour
{
public Quaternion myQuaternion; // Assign your quaternion variable
void Start()
{
// Clamping the quaternion to a range of -45 to 45 degrees around the x-axis
myQuaternion = Quaternion.Clamp(myQuaternion, Quaternion.Euler(-45f, 0f, 0f), Quaternion.Euler(45f, 0f, 0f));
Debug.Log(myQuaternion);
}
}