コード例 #1
0
 void CopyCurve()
 {
     if (_mCurves.Count > 0)
     {
         foreach (var curve in _mCurves)
         {
             VegetationStudioManager.AddAnimationCurveToClipboard(curve.Key);
             break;
         }
     }
     else
     {
         VegetationStudioManager.AddAnimationCurveToClipboard(null);;
     }
 }