大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。
http://answers.unity3d.com/questions/8172/how-to-add-new-curves-or-animation-events-to-an-im.html
unity4.3版本号
方法1:
You can use an editor script that copies over the curves from the original imported Animation Clip into the duplicated Animation Clip.
Here is such an editor script.
- Place it in a folder called Editor, located somewhere inside the Assets folder.
- The script assumes that you have already made a duplicate of the imported clip and called it the same name but with a *copy postfix. For example, if you have an imported clip called MyAnimation, it will search for *MyAnimation_copy*.
- Select the original imported Animation Clip in the Project View.
- You can now use the menu Assets -> Transfer Clip Curves to Copy
And the script:
- using UnityEditor;
- using UnityEngine;
- using System.Collections;
- public class CurvesTransferer {
- const string duplicatePostfix = "_copy";
- [MenuItem ("Assets/Transfer Clip Curves to Copy")]
- static void CopyCurvesToDuplicate () {
- // Get selected AnimationClip
- AnimationClip imported = Selection.activeObject as AnimationClip;
- if (imported == null) {
- Debug.Log("Selected object is not an AnimationClip");
- return;
- }
- // Find path of copy
- string importedPath = AssetDatabase.GetAssetPath(imported);
- string copyPath = importedPath.Substring(0, importedPath.LastIndexOf("/"));
- copyPath += "/" + imported.name + duplicatePostfix + ".anim";
- // Get copy AnimationClip
- AnimationClip copy = AssetDatabase.LoadAssetAtPath(copyPath, typeof(AnimationClip)) as AnimationClip;
- if (copy == null) {
- Debug.Log("No copy found at "+copyPath);
- return;
- }
- // Copy curves from imported to copy
- AnimationClipCurveData[] curveDatas = AnimationUtility.GetAllCurves(imported, true);
- for (int i=0; i<curveDatas.Length; i++) {
- AnimationUtility.SetEditorCurve(
- copy,
- curveDatas[i].path,
- curveDatas[i].type,
- curveDatas[i].propertyName,
- curveDatas[i].curve
- );
- }
- Debug.Log("Copying curves into "+copy.name+" is done");
- }
- }
方法2:
There is more simple variant. This script creates a new animation file itself and makes all copying operations.
- using UnityEditor;
- using UnityEngine;
- public class CurvesTransferer
- {
- const string duplicatePostfix = "_copy";
- static void CopyClip(string importedPath, string copyPath)
- {
- AnimationClip src = AssetDatabase.LoadAssetAtPath(importedPath, typeof(AnimationClip)) as AnimationClip;
- AnimationClip newClip = new AnimationClip();
- newClip.name = src.name + duplicatePostfix;
- AssetDatabase.CreateAsset(newClip, copyPath);
- AssetDatabase.Refresh();
- }
- [MenuItem("Assets/Transfer Clip Curves to Copy")]
- static void CopyCurvesToDuplicate()
- {
- // Get selected AnimationClip
- AnimationClip imported = Selection.activeObject as AnimationClip;
- if (imported == null)
- {
- Debug.Log("Selected object is not an AnimationClip");
- return;
- }
- // Find path of copy
- string importedPath = AssetDatabase.GetAssetPath(imported);
- string copyPath = importedPath.Substring(0, importedPath.LastIndexOf("/"));
- copyPath += "/" + imported.name + duplicatePostfix + ".anim";
- CopyClip(importedPath, copyPath);
- AnimationClip copy = AssetDatabase.LoadAssetAtPath(copyPath, typeof(AnimationClip)) as AnimationClip;
- if (copy == null)
- {
- Debug.Log("No copy found at " + copyPath);
- return;
- }
- // Copy curves from imported to copy
- AnimationClipCurveData[] curveDatas = AnimationUtility.GetAllCurves(imported, true);
- for (int i = 0; i < curveDatas.Length; i++)
- {
- AnimationUtility.SetEditorCurve(
- copy,
- curveDatas[i].path,
- curveDatas[i].type,
- curveDatas[i].propertyName,
- curveDatas[i].curve
- );
- }
- Debug.Log("Copying curves into " + copy.name + " is done");
- }
- }
方法3:
Guys, I loved this script so much, I went ahead and added a couple of features.
Here is a modified version of MaDDoX’s edit that includes logic for automatically placing the animations into folders.
It first uses an animations folder to contain them all and then if the animation came from an FBX file, it will use the FBX’s name to create a subfolder for those animations. Hopefully, this helps y’all keep things organized.
- using UnityEditor;
- using UnityEngine;
- using System.IO;
- using System.Collections;
- public class MultipleCurvesTransferer {
- const string duplicatePostfix = "Edit";
- const string animationFolder = "Animations";
- static void CopyClip(string importedPath, string copyPath) {
- AnimationClip src = AssetDatabase.LoadAssetAtPath(importedPath, typeof(AnimationClip)) as AnimationClip;
- AnimationClip newClip = new AnimationClip();
- newClip.name = src.name + duplicatePostfix;
- AssetDatabase.CreateAsset(newClip, copyPath);
- AssetDatabase.Refresh();
- }
- [MenuItem("Assets/Transfer Multiple Clips Curves to Copy")]
- static void CopyCurvesToDuplicate()
- {
- // Get selected AnimationClip
- Object[] imported = Selection.GetFiltered(typeof(AnimationClip), SelectionMode.Unfiltered);
- if (imported.Length == 0)
- {
- Debug.LogWarning("Either no objects were selected or the objects selected were not AnimationClips.");
- return;
- }
- //If necessary, create the animations folder.
- if (Directory.Exists("Assets/" + animationFolder) == false) {
- AssetDatabase.CreateFolder("Assets", animationFolder);
- }
- foreach (AnimationClip clip in imported) {
- string importedPath = AssetDatabase.GetAssetPath(clip);
- //If the animation came from an FBX, then use the FBX name as a subfolder to contain the animations.
- string copyPath;
- if (importedPath.Contains(".fbx")) {
- //With subfolder.
- string folder = importedPath.Substring(importedPath.LastIndexOf("/") + 1, importedPath.LastIndexOf(".") - importedPath.LastIndexOf("/") - 1);
- if (!Directory.Exists("Assets/Animations/" + folder)) {
- AssetDatabase.CreateFolder("Assets/Animations", folder);
- }
- copyPath = "Assets/Animations/" + folder + "/" + clip.name + duplicatePostfix + ".anim";
- } else {
- //No Subfolder
- copyPath = "Assets/Animations/" + clip.name + duplicatePostfix + ".anim";
- }
- Debug.Log("CopyPath: " + copyPath);
- CopyClip(importedPath, copyPath);
- AnimationClip copy = AssetDatabase.LoadAssetAtPath(copyPath, typeof(AnimationClip)) as AnimationClip;
- if (copy == null)
- {
- Debug.Log("No copy found at " + copyPath);
- return;
- }
- // Copy curves from imported to copy
- AnimationClipCurveData[] curveDatas = AnimationUtility.GetAllCurves(clip, true);
- for (int i = 0; i < curveDatas.Length; i++)
- {
- AnimationUtility.SetEditorCurve(
- copy,
- curveDatas[i].path,
- curveDatas[i].type,
- curveDatas[i].propertyName,
- curveDatas[i].curve
- );
- }
- Debug.Log("Copying curves into " + copy.name + " is done");
- }
- }
- }
….
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/117386.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...