internal CurveSelection(int curveID, CurveEditor host, int keyIndex)
 {
   this.m_CurveID = curveID;
   this.m_Host = host;
   this.m_Key = keyIndex;
   this.type = CurveSelection.SelectionType.Key;
 }
示例#2
0
 internal CurveSelection(int curveID, CurveEditor host, int keyIndex, CurveSelection.SelectionType t)
 {
     this.m_CurveID = curveID;
     this.m_Host    = host;
     this.m_Key     = keyIndex;
     this.type      = t;
 }
 internal CurveSelection(int curveID, int key, CurveSelection.SelectionType type)
 {
     this.curveID = curveID;
     this.key     = key;
     this.type    = type;
 }
 internal CurveSelection(int curveID, int key)
 {
     this.curveID = curveID;
     this.key     = key;
     this.type    = CurveSelection.SelectionType.Key;
 }