示例#1
0
 internal void setActiveOneFinger()
 {
     thisPinType = pinType.wireframe;
 }
示例#2
0
 internal void setActiveFourFinger()
 {
     Debug.Log("eraser mode");
     thisPinType = pinType.eraser;
     eraserAttach();
 }
示例#3
0
 internal void setActiveTwoFinger()
 {
     thisPinType = pinType.polymaker;
 }
示例#4
0
 private void setUnactive()
 {
     thisPinType = pinType.none;
     endInteraction();
     eraserDetach();
 }