进口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 ...
随机推荐
- [ACM] HDU 2063 过山车 (二分图,匈牙利算法)
过山车 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submis ...
- 【架构之路之WCF全析(一)】--服务协定及消息模式
上周微软开公布会说.NET支持全然跨平台和并开放Core源代码的新闻,让我们顿时感到.NET要迎来它的春天.尽管早在几年前.NET就能开发Android和IOS,可是这次的跨平台把Linux都放到了微 ...
- VMware GSX Server 3.2.1 Build 19281免费下载
VMware GSX Server 3.2.1 Build 19281免费下载 评论2 字号:大中小 订阅 VMware官方下载: For Windows 版系统:http://download3 ...
- 努比亚 Z5 mini刷机包 omni4.4.2改动V4.0 自用版 精简 MIUI特效
ROM介绍: 第一版: 1.基于lwang适配的omni4.4.2第二版改动,少量精简改动 2.设置加入"自启项管理",体验更快.更顺滑 3.替换特效为XUI特效 4.改动host ...
- 搭建solr单机版
solr单机版的搭建 一.solr单机版的搭建 1.运行环境 solr 需要运行在一个Servlet容器中,Solr4.10.3要求jdk使用1.7以上,Solr默认提供Jetty(ja),本教va写 ...
- SQL Server,Access数据库查询易混点和C#中parameter指定参数长度的优缺点
在学校的时候就经常做一些网站,所以这次在公司实习,组长第一次给了一个企业的网站还是很快的完成了.中间并没有遇到什么大的问题,但是还是遇到了两个新手非常容易混淆的小问题,所以拿出来跟大家分享一下. 主要 ...
- uva live 4394 String painter 间隔dp
// uva live 4394 String painter // // 问题是,在培训指导dp运动主题,乍一看,我以为只是一点点复杂 // A A磕磕磕,两个半小时后,.发现超过例子.然而,鉴于他 ...
- 开源 自由 java CMS - FreeCMS1.8 网上申报
项目地址:http://code.google.com/p/freecms/ 在线申报 1. 转交申报 用户能够把申报转交给其它人办理,系统会记录此申报的转交记录. 注意:同一时候仅仅能转交一个申报. ...
- ICTCLAS用的字Lucene4.9捆绑
它一直喜欢的搜索方向,虽然无法做到.但仍保持了狂热的份额.记得那个夏天.这间实验室.这一群人,一切都随风而逝.踏上新征程.我以前没有自己.面对七三分技术的商业环境,我选择了沉淀.社会是一个大机器,我们 ...
- ant利用先进,ant订单具体解释,ant包,ant包装删除编译jar文件
在日常的项目开发,经常需要我们可以打包测试.特别是,开发环境是windows.实际情况是linux. 这样的话.一个非常大的程序猿将包,其中将包,这些软件包可能非常大,这里是真正的代码会改变的一部分, ...