示例#1
0
 public void OnRegisterPorts()
 {
     a = RegisterInputValue <string>("A");
     b = RegisterInputValue <string>("B");
 }
 public void OnRegisterPorts()
 {
     controller    = RegisterInputValue <GraphController>("controller");
     variable_name = RegisterInputValue <string>("name");
 }
示例#3
0
 public void OnRegisterPorts()
 {
     a = RegisterInputValue <float>("A");
     b = RegisterInputValue <float>("B");
 }
示例#4
0
 public void OnRegisterPorts()
 {
     seconds = RegisterInputValue <float>("Seconds", 3.0f);
 }
示例#5
0
 public void OnRegisterPorts()
 {
     i = RegisterInputValue <int>("int");
 }
示例#6
0
 public void OnRegisterPorts()
 {
     a = RegisterInputValue <Vector3>("A");
     b = RegisterInputValue <Vector3>("B");
 }
 public void OnRegisterPorts()
 {
     variable_name = RegisterInputValue <string>("name");
 }
示例#8
0
 public void OnRegisterPorts()
 {
     list = RegisterInputValue <List <T> >("list");
     item = RegisterInputValue <T>("item");
 }
示例#9
0
 public void OnRegisterPorts()
 {
     s = RegisterInputValue <string>("string");
 }
示例#10
0
 public void OnRegisterPorts()
 {
     vector = RegisterInputValue <Vector3>("Vector3");
     factor = RegisterInputValue <float>("Factor");
 }
示例#11
0
 public void OnRegisterPorts()
 {
     condition = RegisterInputValue <bool>("condition");
     on_loop   = RegisterExitPort("Loop");
 }
示例#12
0
 public void OnRegisterPorts()
 {
     value = RegisterInputValue <float>("value");
 }
示例#13
0
 public void OnRegisterPorts()
 {
     text = RegisterInputValue <string>("text");
 }