Unity导入FBX自动进行动画切分
手动处理动画分割
在导入FBX模型过程中,若带有动画呢,需要对它进行切分。
当然这个工作可以在Unity中完成。
比如:
这样手动来分割进行。
自动动画切分
- // FbxAnimListPostprocessor.cs : Use an external text file to import a list of
- // splitted animations for FBX 3D models.
- //
- // Put this script in your "Assets/Editor" directory. When Importing or
- // Reimporting a FBX file, the script will search a text file with the
- // same name and the ".txt" extension.
- // File format: one line per animation clip "firstFrame-lastFrame loopFlag animationName"
- // The keyworks "loop" or "noloop" are optional.
- // Example:
- // 0-50 loop Move forward
- // 100-190 die
- using UnityEngine;
- using UnityEditor;
- using System.Collections;
- using System.IO;
- using System.Text.RegularExpressions;
- using System;
- using System.IO;
- public class FbxAnimListPostprocessor : AssetPostprocessor
- {
- public void OnPreprocessModel()
- {
- if (Path.GetExtension(assetPath).ToLower() == ".fbx"
- && !assetPath.Contains("@"))
- {
- try
- {
- string fileAnim;
- if (DragAndDrop.paths.Length <= 0)
- {
- return;
- }
- fileAnim = DragAndDrop.paths[0];
- string ClipText = Path.ChangeExtension(fileAnim, ".txt");
- StreamReader file = new StreamReader(ClipText);
- string sAnimList = file.ReadToEnd();
- file.Close();
- //
- if (EditorUtility.DisplayDialog("FBX Animation Import from file",
- fileAnim, "Import", "Cancel"))
- {
- System.Collections.ArrayList List = new ArrayList();
- ParseAnimFile(sAnimList, ref List);
- ModelImporter modelImporter = assetImporter as ModelImporter;
- //modelImporter.clipAnimations. = true;
- modelImporter.clipAnimations = (ModelImporterClipAnimation[])
- List.ToArray(typeof(ModelImporterClipAnimation));
- EditorUtility.DisplayDialog("Imported animations",
- "Number of imported clips: "
- + modelImporter.clipAnimations.GetLength(0).ToString(), "OK");
- }
- }
- catch { }
- // (Exception e) { EditorUtility.DisplayDialog("Imported animations", e.Message, "OK"); }
- }
- }
- void ParseAnimFile(string sAnimList, ref System.Collections.ArrayList List)
- {
- Regex regexString = new Regex(" *(?<firstFrame>[0-9]+) *- *(?<lastFrame>[0-9]+) *(?<loop>(loop|noloop| )) *(?<name>[^\r^\n]*[^\r^\n^ ])",
- RegexOptions.Compiled | RegexOptions.ExplicitCapture);
- Match match = regexString.Match(sAnimList, 0);
- while (match.Success)
- {
- ModelImporterClipAnimation clip = new ModelImporterClipAnimation();
- if (match.Groups["firstFrame"].Success)
- {
- clip.firstFrame = System.Convert.ToInt32(match.Groups["firstFrame"].Value, 10);
- }
- if (match.Groups["lastFrame"].Success)
- {
- clip.lastFrame = System.Convert.ToInt32(match.Groups["lastFrame"].Value, 10);
- }
- if (match.Groups["loop"].Success)
- {
- clip.loop = match.Groups["loop"].Value == "loop";
- }
- if (match.Groups["name"].Success)
- {
- clip.name = match.Groups["name"].Value;
- }
- List.Add(clip);
- match = regexString.Match(sAnimList, match.Index + match.Length);
- }
- }
- }
- 0-50 loop Move forward
- 100-190 die
Unity导入FBX自动进行动画切分的更多相关文章
- Unity游戏开发——自动为动画剪辑添加事件 之 最后几帧的事件不能被调用的问题
最近在做一个根据配置表自动生成动画剪辑clip以及controller的功能.做法是根据配置表配置的动作以及每个动作的关键帧,自动为每个clip添加事件.这样做可以把动画的事件处理在游戏运行之前就计算 ...
- Unity导入fbx格式的模型
1. 在Model文件夹右击,选择 import new Asset,然后选择要导入的模型 2. 将纹理图片导入Pictures中 3. 在Materials中创建一个Material,然后点击属性中 ...
- Unity自动切割动画
最近在开发项目时,需要处理大量的动画,于是就网上查找资料,然后写了这么编辑器工具: 就是在模型导入时,根据配置文件自动切割动画. 首先我们需要封装两个类:一个模型类和一个动画类 public clas ...
- Unity3d修改FBX文件的动画名方法
问题描述:FBX文件导入Unity3d后的动画名字一般都是 “Take 001”并且无法修改!如何修改它呢? 解决方法:解决方法其实很简单,只要你按照Unity3d的FBX文件命名规则,压根就不会存在 ...
- [转载]一个高效简洁的Aseprite to Unity导入工具
原文链接 https://zhuanlan.zhihu.com/p/28644268 期待原作者上传至AssetStore. 今天,我的第一个 Unity 插件 MetaSprite 正式发布了它的 ...
- FBX BlendShape/Morph动画解析
目前fbx 2015.1中支持三种变形器:skinDeformer,blendShapeDeformer,vertexCacheDeformer.定义在fbxdeformer.h中: enum EDe ...
- unity导入3dsMax源文件.max
https://blog.csdn.net/qq_28002559/article/details/53693621 首先unity导入3dsMax文件为什么要使用.max而不用.fbx,因为我不是做 ...
- Unity2D研究院之自动生成动画、AnimationController、Prefab(一)
http://www.xuanyusong.com/archives/3243 国庆了,回家了.时刻还是要吃一颗学习的心,在家了也要抽出时间好好学习一下.之前MOMO一直没研究过Unity2D,今天研 ...
- GJM:Unity导入百度地图SDK [转载]
感谢您的阅读.喜欢的.有用的就请大哥大嫂们高抬贵手"推荐一下"吧!你的精神支持是博主强大的写作动力以及转载收藏动力.欢迎转载! 版权声明:本文原创发表于 [请点击连接前往] ,未经 ...
随机推荐
- [转]一步一步部署SSIS包图解教程
本文就SQL统计分析SSIS包的部署进行一次详细的部署图解教程,Sql Server Integration Services 提供了非常简单的部署工具,利用这些工具可以方便地将包文件(*.dtsx) ...
- linux信号程序编译遇到的问题
如果把这个去掉-std=c99就会运行通过 还有一点就是 for(int i=0;i<n;i++) 在循环里声明变量仅被用在c99里面.也就是要想在循环里面声明变量,就必须使用-std=c99
- 一站式学习Wireshark(三):应用Wireshark IO图形工具分析数据流
基本IO Graphs: IO graphs是一个非常好用的工具.基本的Wireshark IO graph会显示抓包文件中的整体流量情况,通常是以每秒为单位(报文数或字节数).默认X轴时间间隔是1秒 ...
- 【大数据笔记】白话详解Zookeeper的一致性
下面内容主要摘抄于<<Hadoop实战>>,红色高亮部分是本人添加的白话注释. Zookeeper 是一种高性能.可扩展的服务. Zookeeper 的读写速度非常快,并且读的 ...
- ubuntu 12.10 默认安装php5-fpm无监听9000端口,nginx无法链接php5-fpm修正
升级php5的时候,发现nginx无法链接到php5,怀疑是php5端口的问题. netstat -an未发现监听9000端口. 查看/var/log/php5-fpm.log一切正常. 随后查看/e ...
- CMM已经落伍了,敏捷才是王道
首先强调一下,敏捷和有没有文档一点关系都没有.我只是对于CMM的那些文档感觉有些浪费. 看看那些文档,看看那些流程.想想那些伟大的软件作品,哪个是用CMM开发出来的? 作为测试工程师,程序员的你在CM ...
- [android] Android 错误集锦
问题1:导入工程时报错The import android.XXX cannot be resolved 解决方法: 1.右键工程→Bulid Path→Configure Build Path... ...
- Oracle 10g通过创建物化视图实现不同数据库间表级别的数据同步
摘自:http://blog.csdn.net/javaee_sunny/article/details/53439980 目录(?)[-] Oracle 10g 物化视图语法如下 实例演示 主要步骤 ...
- Tensorflow参数初始化很慢的问题
首先查看是否使用了import cv2 如果有import cv2,说明是opencv的问题 因为如果你的opencv是本地编译的,那么很可能使用了cudnn进行编译,那么这个cv2就会占用显存,并且 ...
- (转)S5PV210 三个Camera Interface/CAMIF/FIMC的区别
原文出处:http://blog.csdn.net/kickxxx/article/details/7728947 S5PV210有三个CAMIF单元,分别为CAMIF0 CAMIF1和CAMIF2. ...