进口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 ...
随机推荐
- asp.net Form 认证【转】
第一部分 如何运用 Form 表单认证 一. 新建一个测试项目 为了更好说明,有必要新建一个测试项目(暂且为“FormTest”吧),包含三张页面足矣(Default.aspx.Logi ...
- Windows phone 8 学习笔记(6) 多任务
原文:Windows phone 8 学习笔记(6) 多任务 Windows phone 8 是一个单任务操作系统,任何时候都只有一个应用处于活跃状态,这里的多任务是指对后台任务的支持.本节我们先讲讲 ...
- VMware GSX Server 3.2.1 Build 19281免费下载
VMware GSX Server 3.2.1 Build 19281免费下载 评论2 字号:大中小 订阅 VMware官方下载: For Windows 版系统:http://download3 ...
- poj3233(矩阵快速幂)
poj3233 http://poj.org/problem?id=3233 给定n ,k,m 然后是n*n行, 我们先可以把式子转化为递推的,然后就可以用矩阵来加速计算了. 矩阵是加速递推计算的一 ...
- 编译联想A820内核源码
编译平台:Fedora 20 x64 交叉编译工具链:arm-linux-androideabi-4.6 话说这个编译工具我研究了两天,Fedora自带一个arm-none-eabi的ToolChai ...
- android studio下gradle与Git错误解决方法
Error: Gradle: Execution failed for task ':mytask' > A problem occurred starting process 'command ...
- hdu 4891---水的问题 但WA非常多
这个问题是在一个坑----即使在使用long long 这将是超出范围 自己显得很长的时间去阅读很多次的称号仍然没想到 当时的想法是要记住----无论如何,我用long long 已经最大范围.当然 ...
- 基于Cocos2dx开发卡牌游戏_松开,这三个国家
1.它实现了动态读取地图资源.地图信息被记录excel桌格.假设你想添加地图,编者excel导入后CocoStudio数据编辑器,然后出口到Json档,到项目的Resource文件夹下. 2.SGFi ...
- WPF/Silverlight中图形的平移,缩放,旋转,倾斜变换演示
原文:WPF/Silverlight中图形的平移,缩放,旋转,倾斜变换演示 为方便描述, 这里仅以正方形来做演示, 其他图形从略. 运行时效果图:XAML代码:// Transform.XAML< ...
- java反射机制性能优化
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.uti ...