进口fbx角色动画read-only解
原文链接: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");
- }
- }
- }
....
进口fbx角色动画read-only解的更多相关文章
- CSS3图片翻转动画技术详解
CSS动画非常的有趣:这种技术的美就在于,通过使用很多简单的属性,你能创建出漂亮的消隐效果.其中代表性的一种就是CSS图片翻转效果,能让你看到一张卡片的正反两面上的内容.本文就是要用最简单的方法向大家 ...
- iOS:核心动画的详解介绍:CAAnimation(抽象类)及其子类
核心动画的详解介绍:CAAnimation(抽象类) 1.核心动画基本概念 Core Animation是一组非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍! 使用它 ...
- Android Animations 视图动画使用详解!!!
转自:http://www.open-open.com/lib/view/open1335777066015.html Android Animations 视图动画使用详解 一.动画类型 Andro ...
- pygame 笔记-3 角色动画及背景的使用
上二节,已经知道如何控制基本的运动了,但是只有一个很单调的方块,不太美观,本节学习如何加载背景图,以及角色的动画. 素材准备:(原自github) 角色动画的原理:动画都是一帧帧渲染的,比如向左走的动 ...
- POPSpring动画参数详解
POPSpring动画参数详解 效果 源码 https://github.com/YouXianMing/Animations // // POPSpringParameterController.m ...
- 【Salvation】——怪物角色动画&主角碰撞死亡动画
写在前面:这个动画功能同样也是使用JavaScript编写脚本,在Unity3D游戏引擎的环境中实现,在怪物的角色动画中,很多与人物相同,这里不再重复. 一.设计敌人 拖一个精英sprite到层次面板 ...
- Unity3D NGUI UIPlayTween(原UIButtonTween)动画事件详解
http://blog.csdn.net/asd237241291/article/details/8507817 原创文章如需转载请注明:转载自 脱莫柔Unity3D学习之旅 Unity3D引擎技术 ...
- Android基础夯实--重温动画(五)之属性动画 ObjectAnimator详解
只有一种真正的英雄主义 一.摘要 ObjectAnimator是ValueAnimator的子类,它和ValueAnimator一样,同样具有计算属性值的功能,但对比ValueAnimator,它会更 ...
- RocketMQ——角色与术语详解
原文地址:http://jaskey.github.io/blog/2016/12/15/rocketmq-concept/ RocketMQ——角色与术语详解 2016-12-15 THU 15:4 ...
随机推荐
- SQL SERVER FOR 多列字符串连接 XML PATH 及 STUFF
原文:SQL SERVER FOR 多列字符串连接 XML PATH 及 STUFF 本来用 Writer 写一篇关于一列多行合并的博客来的,结果快写完了时候,在一个插入代码时候,崩了,重新打开,居然 ...
- java它们的定义ArrayList序列, 大神跳跃
一个list有两种类型的对象,今天有需求必须责令不同的约会对象,这里是代码 /** *@author xh1991101@163.com */ List<Message> messages ...
- struts2集成fckeditor(来自大型门户网站是这样练成的一书)
- lightoj1030(期望dp)
有n个格子,初始的时候pos=1,然后丢骰子,然后新的pos为pos+骰子的点数,走到新的pos,可以捡走该pos上的黄金. 特殊的是,如果新的pos超过了n,那么是不会走的,要重新丢骰子. 所以要分 ...
- Visual Studio跨平台开发实战(3) - Xamarin iOS多页面应用程式开发
原文 Visual Studio跨平台开发实战(3) - Xamarin iOS多页面应用程式开发 前言 在前一篇教学中, 我们学会如何使用Visual Studio 搭配Xcode 进行iOS基本控 ...
- 实现Android ListView 自动加载更多内容
研究了几个小时终于实现了Android ListView 自动加载的效果. 说说我是怎样实现的.分享给大家. 1.给ListView增加一个FooterView,调用addFooterView(foo ...
- Dreamer 3.0 支持json、xml、文件上传
自己写的框架,功能类似Struts2.x 下载地址:http://pan.baidu.com/share/link?shareid=3273223286&uk=470382596 新增功能: ...
- net Mvc模块化开发
Asp.net Mvc模块化开发之“部分版本部分模块更新(上线)” 项目开发从来就不是一个简单的问题.更难的问题是维护其他人开发的项目,并且要修改bug.如果原系统有重大问题还需要重构. 怎么重构系统 ...
- java线程例子登山
Through its implementation, this project will familiarize you with the creation and execution of thr ...
- SQLServer2014新功能
随机存取存储器 OLTP:提供了内置在芯 SQL Server 数据库内存 OLTP 特征,为了显著提高事务数据库应用程序的速度和吞吐量.随机存取存储器 OLTP 它是包含在 SQL Server 2 ...