private void AddCurvesForProp(MovieProperty prop, MovieCurveClip clip, int index)
 {
     float[] values = prop.GetValues(this.component);
     for (int j = 0; j < values.Length; j++)
     {
         int curveIdx = clip.AddCurve(new MovieCurve(clip.length, values[j],
                                                     Translation.TryGetText("Property", prop.Name) + "." + j));
         this.propIdxToCurveIdxes[index].Add(curveIdx);
     }
 }
        public override string GetName()
        {
            string compoName = Translation.TryGetText("Component", componentTypeName);

            return($"{targetName}: {compoName}");
        }
 public static string TryGetPropertyName(String original) => Translation.TryGetText("Property", original);