US code to C# but I am stuck on what to do with the Vector3:

Hi,

I am converting this US code to C# but I am stuck on what to do with the Vector3:

function BallisticVel(target: Transform): Vector3 {

Source code Im using is taken from aldonaletto

Thanks.

So, that’s a method that takes a Transform argument and returns a Vector3. In C#, that’d be:

Vector3 BallisticVel(Transform target)
{
}

Edit: Maybe >this< page is helpful…

public Vector3 BallisticVel(Transform target)
{}

edit: Oops, looks like someone already got to it heh

Thanks guys and thanks again jgodfrey.