コード例 #1
0
        public void SetMorphPose(string name, MorphPose morphPose)
        {
            int index;

            if (_morphNameMap.TryGetValue(name, out index))
            {
                SetMorphPose(index, morphPose);
            }
        }
コード例 #2
0
 public void SetMorphPose(int index, MorphPose morphPose)
 {
     MorphRates[index] = morphPose.Weight;
 }