I’m trying to use:
public Quaternion randomRotation = Quaternion.Euler(new Vector3(0,0,Random.rotation));
However I get this error, error CS1503: Argument ‘#3’ cannot convert ‘UnityEngine.Quaternion’ expression to type ‘float’
I know why its wrong but I don’t know how to fix it. I tried System.Convert… like how you would if you were trying to convert a float to a string.