Hi!
I made a custom class, and added a function. From another script i call my function, so far so good.
The only thing that bugs me a little is that there is no overload list popping up while typing the overloads.(I work on a team, and want my teammates to know what to type in for overloads)
Here is sample layout code:
public class fubar
{
public static function Fuba(fu:Camera,bar:float)
{
//Something happens here
}
}
I am new to coding and not sure if my function should be public/static or both(for the class as well)…maybe this is the reason the overload list doesn’t pop up?? Any guidance will be greatly appreciated.