SetMarked() public method

public SetMarked ( bool state ) : void
state bool
return void
示例#1
0
 private void ChangeMark(string text)
 {
     Debug.Log("ChangeMark(): text = " + text);
     if (text != null && text.Length > 0)
     {
         node.SetMarked(true);
     }
     else
     {
         node.SetMarked(false);
     }
     node.mark = text;
     controller.HideMark();
     controller.SetInputActive(true);
 }