原文链接: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:


  1. using UnityEditor;
  2. using UnityEngine;
  3. using System.Collections;
  4. public class CurvesTransferer {
  5. const string duplicatePostfix = "_copy";
  6. [MenuItem ("Assets/Transfer Clip Curves to Copy")]
  7. static void CopyCurvesToDuplicate () {
  8. // Get selected AnimationClip
  9. AnimationClip imported = Selection.activeObject as AnimationClip;
  10. if (imported == null) {
  11. Debug.Log("Selected object is not an AnimationClip");
  12. return;
  13. }
  14. // Find path of copy
  15. string importedPath = AssetDatabase.GetAssetPath(imported);
  16. string copyPath = importedPath.Substring(0, importedPath.LastIndexOf("/"));
  17. copyPath += "/" + imported.name + duplicatePostfix + ".anim";
  18. // Get copy AnimationClip
  19. AnimationClip copy = AssetDatabase.LoadAssetAtPath(copyPath, typeof(AnimationClip)) as AnimationClip;
  20. if (copy == null) {
  21. Debug.Log("No copy found at "+copyPath);
  22. return;
  23. }
  24. // Copy curves from imported to copy
  25. AnimationClipCurveData[] curveDatas = AnimationUtility.GetAllCurves(imported, true);
  26. for (int i=0; i<curveDatas.Length; i++) {
  27. AnimationUtility.SetEditorCurve(
  28. copy,
  29. curveDatas[i].path,
  30. curveDatas[i].type,
  31. curveDatas[i].propertyName,
  32. curveDatas[i].curve
  33. );
  34. }
  35. Debug.Log("Copying curves into "+copy.name+" is done");
  36. }
  37. }

方法2:

There is more simple variant. This script creates a new animation file itself and makes all copying operations.


  1. using UnityEditor;
  2. using UnityEngine;
  3. public class CurvesTransferer
  4. {
  5. const string duplicatePostfix = "_copy";
  6. static void CopyClip(string importedPath, string copyPath)
  7. {
  8. AnimationClip src = AssetDatabase.LoadAssetAtPath(importedPath, typeof(AnimationClip)) as AnimationClip;
  9. AnimationClip newClip = new AnimationClip();
  10. newClip.name = src.name + duplicatePostfix;
  11. AssetDatabase.CreateAsset(newClip, copyPath);
  12. AssetDatabase.Refresh();
  13. }
  14. [MenuItem("Assets/Transfer Clip Curves to Copy")]
  15. static void CopyCurvesToDuplicate()
  16. {
  17. // Get selected AnimationClip
  18. AnimationClip imported = Selection.activeObject as AnimationClip;
  19. if (imported == null)
  20. {
  21. Debug.Log("Selected object is not an AnimationClip");
  22. return;
  23. }
  24. // Find path of copy
  25. string importedPath = AssetDatabase.GetAssetPath(imported);
  26. string copyPath = importedPath.Substring(0, importedPath.LastIndexOf("/"));
  27. copyPath += "/" + imported.name + duplicatePostfix + ".anim";
  28. CopyClip(importedPath, copyPath);
  29. AnimationClip copy = AssetDatabase.LoadAssetAtPath(copyPath, typeof(AnimationClip)) as AnimationClip;
  30. if (copy == null)
  31. {
  32. Debug.Log("No copy found at " + copyPath);
  33. return;
  34. }
  35. // Copy curves from imported to copy
  36. AnimationClipCurveData[] curveDatas = AnimationUtility.GetAllCurves(imported, true);
  37. for (int i = 0; i < curveDatas.Length; i++)
  38. {
  39. AnimationUtility.SetEditorCurve(
  40. copy,
  41. curveDatas[i].path,
  42. curveDatas[i].type,
  43. curveDatas[i].propertyName,
  44. curveDatas[i].curve
  45. );
  46. }
  47. Debug.Log("Copying curves into " + copy.name + " is done");
  48. }
  49. }

方法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.



  1. using UnityEditor;
  2. using UnityEngine;
  3. using System.IO;
  4. using System.Collections;
  5. public class MultipleCurvesTransferer {
  6. const string duplicatePostfix = "Edit";
  7. const string animationFolder = "Animations";
  8. static void CopyClip(string importedPath, string copyPath) {
  9. AnimationClip src = AssetDatabase.LoadAssetAtPath(importedPath, typeof(AnimationClip)) as AnimationClip;
  10. AnimationClip newClip = new AnimationClip();
  11. newClip.name = src.name + duplicatePostfix;
  12. AssetDatabase.CreateAsset(newClip, copyPath);
  13. AssetDatabase.Refresh();
  14. }
  15. [MenuItem("Assets/Transfer Multiple Clips Curves to Copy")]
  16. static void CopyCurvesToDuplicate()
  17. {
  18. // Get selected AnimationClip
  19. Object[] imported = Selection.GetFiltered(typeof(AnimationClip), SelectionMode.Unfiltered);
  20. if (imported.Length == 0)
  21. {
  22. Debug.LogWarning("Either no objects were selected or the objects selected were not AnimationClips.");
  23. return;
  24. }
  25. //If necessary, create the animations folder.
  26. if (Directory.Exists("Assets/" + animationFolder) == false) {
  27. AssetDatabase.CreateFolder("Assets", animationFolder);
  28. }
  29. foreach (AnimationClip clip in imported) {
  30. string importedPath = AssetDatabase.GetAssetPath(clip);
  31. //If the animation came from an FBX, then use the FBX name as a subfolder to contain the animations.
  32. string copyPath;
  33. if (importedPath.Contains(".fbx")) {
  34. //With subfolder.
  35. string folder = importedPath.Substring(importedPath.LastIndexOf("/") + 1, importedPath.LastIndexOf(".") - importedPath.LastIndexOf("/") - 1);
  36. if (!Directory.Exists("Assets/Animations/" + folder)) {
  37. AssetDatabase.CreateFolder("Assets/Animations", folder);
  38. }
  39. copyPath = "Assets/Animations/" + folder + "/" + clip.name + duplicatePostfix + ".anim";
  40. } else {
  41. //No Subfolder
  42. copyPath = "Assets/Animations/" + clip.name + duplicatePostfix + ".anim";
  43. }
  44. Debug.Log("CopyPath: " + copyPath);
  45. CopyClip(importedPath, copyPath);
  46. AnimationClip copy = AssetDatabase.LoadAssetAtPath(copyPath, typeof(AnimationClip)) as AnimationClip;
  47. if (copy == null)
  48. {
  49. Debug.Log("No copy found at " + copyPath);
  50. return;
  51. }
  52. // Copy curves from imported to copy
  53. AnimationClipCurveData[] curveDatas = AnimationUtility.GetAllCurves(clip, true);
  54. for (int i = 0; i < curveDatas.Length; i++)
  55. {
  56. AnimationUtility.SetEditorCurve(
  57. copy,
  58. curveDatas[i].path,
  59. curveDatas[i].type,
  60. curveDatas[i].propertyName,
  61. curveDatas[i].curve
  62. );
  63. }
  64. Debug.Log("Copying curves into " + copy.name + " is done");
  65. }
  66. }
  67. }

....

进口fbx角色动画read-only解的更多相关文章

  1. CSS3图片翻转动画技术详解

    CSS动画非常的有趣:这种技术的美就在于,通过使用很多简单的属性,你能创建出漂亮的消隐效果.其中代表性的一种就是CSS图片翻转效果,能让你看到一张卡片的正反两面上的内容.本文就是要用最简单的方法向大家 ...

  2. iOS:核心动画的详解介绍:CAAnimation(抽象类)及其子类

    核心动画的详解介绍:CAAnimation(抽象类)   1.核心动画基本概念 Core Animation是一组非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍! 使用它 ...

  3. Android Animations 视图动画使用详解!!!

    转自:http://www.open-open.com/lib/view/open1335777066015.html Android Animations 视图动画使用详解 一.动画类型 Andro ...

  4. pygame 笔记-3 角色动画及背景的使用

    上二节,已经知道如何控制基本的运动了,但是只有一个很单调的方块,不太美观,本节学习如何加载背景图,以及角色的动画. 素材准备:(原自github) 角色动画的原理:动画都是一帧帧渲染的,比如向左走的动 ...

  5. POPSpring动画参数详解

    POPSpring动画参数详解 效果 源码 https://github.com/YouXianMing/Animations // // POPSpringParameterController.m ...

  6. 【Salvation】——怪物角色动画&主角碰撞死亡动画

    写在前面:这个动画功能同样也是使用JavaScript编写脚本,在Unity3D游戏引擎的环境中实现,在怪物的角色动画中,很多与人物相同,这里不再重复. 一.设计敌人 拖一个精英sprite到层次面板 ...

  7. Unity3D NGUI UIPlayTween(原UIButtonTween)动画事件详解

    http://blog.csdn.net/asd237241291/article/details/8507817 原创文章如需转载请注明:转载自 脱莫柔Unity3D学习之旅 Unity3D引擎技术 ...

  8. Android基础夯实--重温动画(五)之属性动画 ObjectAnimator详解

    只有一种真正的英雄主义 一.摘要 ObjectAnimator是ValueAnimator的子类,它和ValueAnimator一样,同样具有计算属性值的功能,但对比ValueAnimator,它会更 ...

  9. RocketMQ——角色与术语详解

    原文地址:http://jaskey.github.io/blog/2016/12/15/rocketmq-concept/ RocketMQ——角色与术语详解 2016-12-15 THU 15:4 ...

随机推荐

  1. Google Earth数据存储、管理、表现及开发机制

    Google Earth数据存储.管理.表现及开发机制 一.    Google Earth(Map)介绍 1.1    Google Earth介绍 在众多的地理信息服务提供商中,Google是较早 ...

  2. 【JavaEE基础】在Java中如何使用jdbc连接Sql2008数据库

    我们在javaEE的开发中,肯定是要用到数据库的,那么在javaEE的开发中,是如何使用代码实现和SQL2008的连接的呢?在这一篇文章中,我将讲解如何最简单的使用jdbc进行SQL2008的数据库的 ...

  3. HDU 4126 Genghis Khan the Conqueror MST+树形dp

    题意: 给定n个点m条边的无向图. 以下m行给出边和边权 以下Q个询问. Q行每行给出一条边(一定是m条边中的一条) 表示改动边权. (数据保证改动后的边权比原先的边权大) 问:改动后的最小生成树的权 ...

  4. 黄聪:Microsoft Enterprise Library 5.0 系列教程(九) Policy Injection Application Block

    原文:黄聪:Microsoft Enterprise Library 5.0 系列教程(九) Policy Injection Application Block 代理对象(Proxy Object) ...

  5. Java 理论与实践: 处理 InterruptedException(转)

    很多 Java™ 语言方法,例如 Thread.sleep() 和 Object.wait(),都可以抛出InterruptedException.您不能忽略这个异常,因为它是一个检查异常(check ...

  6. (视频)《高速创建站点》 4.2 完结篇 – 应用运营vs.发射卫星,遥測(Telemetry) 技术

    本文是<高速创建站点>系列的第10篇(完结篇),假设你还没有看过之前的内容,建议你点击下面文件夹中的章节先阅读其它内容再回到本文.訪问本系列文件夹.请点击:http://anb.io/bl ...

  7. Android定位功能

    不说废话,直接说说实现android定位有关的API吧. 这些API都在android.location包下,一共有三个接口和八个类.它们配合使用即可实现定位功能. 三个接口: GpsStatus.L ...

  8. 解决Centos 7 dhcp服务器-no subnet declaration for start (no IPV4 addresses.)

    上面的配置是hyper-v 安装的 centos 7.0 安装dhcp 服务器的方法是 yum install dhcpd 在安装和配置好后,运行的时候出现错误 错误提示如下: no subnet d ...

  9. 玩转Web之servlet(五)---- 怎样解决servlet的线程安全问题

    servlet默认是存在线程安全问题的,但是说白了,servlet的线程安全问题实际上就是多线程的线程安全问题,因为servlet恰巧是一个多线程才会出现安全性问题. 浏览器每次通过http协议去提交 ...

  10. BootStrap布局案例

    BootStrap布局 bootstrap 2.3版与3.0版的使用区别 http://www.weste.net/2013/8-20/93261.html 以一个博客系统的首页,来介绍如何布局 1, ...