예제 #1
0
 public override void Awake()
 {
     base.Awake();
     inputs           = new Vid_ObjectInputs(numOfPrameters);
     parameters_names = new List <String>();
     prefix           = new Dictionary <Vid_Prefix, string>();
     FunctionTool.getInstance().setCurrentFunction(this);
 }
예제 #2
0
 public static FunctionTool getInstance()
 {
     if (instance == null)
     {
         instance = new FunctionTool();
     }
     return(instance);
 }
예제 #3
0
 public override void Awake() {
     base.Awake();
     ft = FunctionTool.getInstance();
 }
예제 #4
0
 public override void Awake()
 {
     base.Awake();
     ft = FunctionTool.getInstance();
 }
예제 #5
0
 public static FunctionTool getInstance() {
     if(instance == null) {
         instance = new FunctionTool();
     }
     return instance;
 }