Aura Lighting

Hi guys I’m new here in unity. I searched a lot of assets and i found this Aura Volumetric Lighting, i saw in the YouTube how beautiful asset it is and also FREE but when i imported it from my unity there is a error Vector3int and Vector2int, I kept searching how to fix it, and then i tried to downloaded it from GitHub but the error is still the same and i don’t know how to fix it. I’m currently using unity latest version 5.6.3p2. It is all about version?

The Vector3Int and Vector2Int structs are only available starting from v2017.3
If you wanna use them in older version you should add the structs yourself.
Add these structs somewhere in your project as a new script:

public struct Vector2Int
{
    public int x;
    public int y;

    public Vector2Int(int x, int y)
    {
        this.x = x;
        this.y = y;
    }
}

public struct Vector3Int
{
    public int x;
    public int y;
    public int z;

    public Vector3Int(int x, int y, int z)
    {
        this.x = x;
        this.y = y;
        this.z = z;
    }
}

If you want some tutorial on Aura asset watch this - - YouTube