GrabbableScribbler.RandomVector C# (CSharp) Method

RandomVector() protected static method

protected static RandomVector ( ) : Vector3
return Vector3
    protected static Vector3 RandomVector()
    {
        var v = new Vector3(Random.value - 0.5f, 0, Random.value - 0.5f);
        return v.normalized;
    }