I\'m trying to call a method using a string, but there a problem:
void make_moviment(string mov,Vector3 new_mov){ GameObject past_panel = GameObject.Find
method.Invoke(t,new object[] { mov }));
Is the same as calling
t.WhateverTheMethodIs(mov);
But t is the Type, not the object of that type. You need to pass in the object to call the method on there instead. (Or null if the method is static).
t
Type