04-24-2024, 02:45 PM
(04-24-2024, 12:23 PM)_Aka_ Wrote: Hi,
GetTangent (and I assume the others as well) is a protected method, meaning that it is not public and can not be referenced from outside the VolumeController's class (or any of its inherited classes).
You can add this code to your VolumeController to make this functionality available from outside the class:
public Vector3 GetTangentAt(float tf)
=> GetTangent(tf);
Did this help?
Oops! I hadn't noticed in the API reference that these are protected. I had assumed that everything in the API reference was public.
So, yes, your solution helped!
Thank you!

