Answers for "how to turn 3 floats into quartenion"

C#
0

how to turn 3 floats into quartenion

using UnityEngine;public class Example : MonoBehaviour
{
    void Start()
    {
        // A rotation 30 degrees around the y-axis
        Quaternion rotation = Quaternion.Euler(0, 30, 0);
    }
}
Posted by: Guest on February-09-2020

Code answers related to "how to turn 3 floats into quartenion"

C# Answers by Framework

Browse Popular Code Answers by Language