↧
Answer by Peter G
They're both function types. var myFunc : function = Update; then you can pass them to a function: function SomeAction ( target : Object , callback : function(Object) ) { callback(target); }
View ArticleAnswer by YikYikHeiHei
Are you want to show what is Update? If that, you should do this Debug.Log(Function) //<-- It should make Function. Unity Function can use in a var in javascript. var callFunction : Function;...
View Article