查看: 523|回复: 7

[引擎各个功能] 【Vertex Animation Tool | Unreal Engine】

[复制链接]

1

主题

342

帖子

7万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
75866
发表于 2016-6-25 13:38:59 | 显示全部楼层 |阅读模式


本页面的内容:

      
Overview

Prerequisites
Script Location
Tool Caveats
Vertex Animation Tools Break Down
3Ds Max Version  Script Installation

3Ds Max Unit Setup

Tool Choices

Tips  Tricks
Speeding Up the Animation Play Rate
Multiple Animated Meshes
Frame Skip

Technical Information
Limitations
Memory Usage
     Overview
Storing complex animation data into 2D Textures or a meshes UV's is a great way to reduce animation overhead while still maintaining the required look and feel of the animation. In the past you might have used Morph Targets to do the exact same thing, however this new method has a few advantages that Morph Targets do not.One of those advantages is allowing you to use complex animation data inside systems that would not otherwise be capable of utilizing Morph Targets like the Cascade Particle Editor.In the following documents we will cover how you can use this script to generate content for your UE4 projects.
Prerequisites
Before we can begin using the script there are few things to be aware of so you can get the best results possible when using this technique.

Script Location
This script is only available in Unreal Engine 4 (UE4) Version 4.8 or later.

The Vertex Animation Script will be in the following location and is called VertexAnimationTools.ms.
    4.8\Engine\Extras\3dsMaxScripts\VertexAnimationTools.ms
Tool Caveats
While this tool is very good at reducing animation overhead by storing complex animation data into a texture, there are a few drawbacks to using the tool. First of all the tool can only affect a maximum of 8192 vertices in a single 2D Texture. This is because the maximum Texture size a Texture can be for DirectX 11 is 8192 pixels in either the X or Y direction. The tool generates the data in the Texture using the following formula.
    Final texture resolution:  X = number of vertex in the mesh, Y = Number of frames captured.
Due to this limitation this tool is best suited for Visual Effects or ambient Static Meshes that require animations but might not justify using a complex animation rig to do so. This tool will also not work with Skeletal Mesh Animations as the bone transforms are not available to the Material Editor.This means that if you want to affect the vertices of a Skeletal Mesh in a similar manner you will need to use Morph Targets instead.

Vertex Animation Tools Break Down
Inside of the Vertex Animation Tools you will find two entirely different methods for affecting the vertices of Static Meshes. In the following section we will go over what these two methods are and how they differ from one another.

Vertex Animation Tools: The top section of the Vertex Animation Tools, called Vertex Animation Tools, is for generating a 2D Texture that will store the morph target vertex positions and normals.

【虚幻4翻译文档-Vertex Animation Tool | Unreal Engine】[虚幻4中文文档]




Property Name
Description

Animation Options:Animation Options allows you to pick between using animation that was created using the Timeline in 3Ds Max or use individual Key Frame Meshes that were created in 3Ds Max or another 3D package like Maya or Blender and then exported out of that package frame by frame so the animation could then be re-constructed inside 3Ds Max.Process Animated Meshes:This button will process the animated meshes that are in the 3Ds Max scene, creating and then exporting the required Textures.Anim Start:This option defines the frame that the animation should start from.Anim End:This option defines the frame that the animation should end on.Frame Skip:This option allows you skip frames to try and save on Texture space.Process Selected Meshes:This option, only available if Key Frame Meshes is enabled, will process the selected Key Frame Meshes in the order that they were selected.
Sequence Painter: The Sequence Painter does something similar to the Vertex Animation Tool's but with one key difference, the information for the vertices positions is stored in the meshes UV's instead of a 2D Texture.

【虚幻4翻译文档-Vertex Animation Tool | Unreal Engine】[虚幻4中文文档]




Property Name
Description

Paint Selection Sequence:This stores the information about the meshes Vertices inside of the meshes UVs instead of storing that data in a 2D Texture.
3Ds Max Version  Script Installation
This tool has only be tested using 3Ds Max 2015. While it might be able to work with other 3Ds Max versions, none of them have been tested so use other version of 3Ds Max at your own risk.To install the script just drag it from its location in 4.8\Engine\Extras\3dsMaxScripts right into the 3Ds Max viewport and the script will launch itself.

【虚幻4翻译文档-Vertex Animation Tool | Unreal Engine】[虚幻4中文文档]


If you find that you are using this script a lot you can always add the script to one of the tool bars or quad menus. If you are unfamiliar how to do this the Autodesk site has a very detailed walk through that will explain how you go about doing this.
3Ds Max Unit Setup
Before we can begin to use the tool we need to first ensure that the units of measurement 3Ds Max uses is setup to correctly match the units of measurement UE4 uses.This way we can ensure that the data the tool exports from 3Ds Max will work in the same manner inside UE4.Since UE4 uses Centimeters for its default unit of measurement we will need to ensure that 3Ds Max uses this as well and to change this we must do the following.

First open up 3Ds Max 2015 and once loaded from the Main Toolbar select Customize > Unit Setup.

Next click on System Unit Setup and change the System Unit Setup from Inches to Centimeters and then press the OK button.

Finally change the Display Unit Scale to Generic Units and then press the OK button.

【虚幻4翻译文档-Vertex Animation Tool | Unreal Engine】[虚幻4中文文档]


It is extremely important that you DO NOT skip this step. Skipping this step could result in rendering errors when the content is imported into UE4 because UE4 and 3Ds Max's units are not the same.
Tool Choices
The Vertex Animation 3Ds Max script offers two different ways to store the vertex animation data. One method will store the vertices positions in a 2D Texture while the other method will store the vertex position data in the UV's of the mesh. Below you will find links that show you how to setup and use both methods.

Key framed Method - This method uses individual key frames that can be exported from other 3D packages and imported into 3Ds Max. That information is saved to the meshes UVs.



Animation Timeline Method - This method uses the 3Ds Max animation timeline and the results are encoded into a 2D Texture.
Tips  Tricks
To get the most out this technique, there are a few tips and tricks that you can follow which are outlined below.

Speeding Up the Animation Play Rate
If you feel that the rate at which the animations are playing is to slow, you can use the TimeWithSpeedVariable Material Function to speed up the play rate.To do this just plugging the output of the TimeWithSpeedVariable into the 0-1 Animation input if you are using the MS_SequencePainter_SequenceFlibook Material Function.If you are using the MS_VertexAnimationTools_MorphTargets Material Function plug the output of the TimeWithSpeedVariable into the Morph Animations input.

【虚幻4翻译文档-Vertex Animation Tool | Unreal Engine】[虚幻4中文文档]



Multiple Animated Meshes
You can select multiple animated meshes at a time and the script will bake all of that data down to one mesh and one set of Textures. This is very useful when working with characters that are made up of different parts. Just select the parts that you want to use and the run the script like normal. The script will then combine the pieces you selected and generate a new mesh from them along with the required 2D Textures.

Frame Skip
Using the Frame Skip option that is under the Vertex Animation Tools section of the script will allow you to skip certain frames. This is a very useful option as it allows you to reduce the final Texture size while still maintaining the look and feel of the original animation.

【虚幻4翻译文档-Vertex Animation Tool | Unreal Engine】[虚幻4中文文档]



If we take a look at the example video below, we can see the Frame Skip feature in action. The first Teapot you see in front of the word, Original, shows how the Teapot will animate using the full frame range. The next Teapot, with the number 2 in front of it, shows how the teapot animates skipping every 2nd frame and so on. As you can see the last example, the effect will still maintain its look and feel even if you skip 10 frames.



Mesh Name /Number
Texture Size
Memory Savings

Original175 KBN/A259 KB116 KB530 KB145 KB1021 KB154 KBTechnical Information
The following section is for technical information about how the Vertex Animation script works. Please note that this is here purely for reference or for people who would like to know more about how the script works in case they want to modify it.

Limitations
Vertex positional morph target information is stored in a 16 bit signed floating point file format. A 32 bit image would be more precise but 16 should suffice for most FX work. With that said, the offset vertex positions will be less precise as they move further away from their resting positions.

Memory Usage
The memory usage for each frame per vert is as follows :

Vertex Offset Texture: 8 bytes per vertex per frame (each pixel)

Normal Texture: 4 bytes per vertex per frame (each pixel)



   



   



      




   


      相关页面

  




       Vertex Animation Tool - Key Framed Meshes








      Vertex Animation Tool - Timeline Meshes




回复

使用道具 举报

0

主题

1241

帖子

3932

积分

vip会员

Rank: 1

积分
3932
发表于 2016-7-2 18:49:39 来自手机 | 显示全部楼层
怎么下载额
回复 支持 反对

使用道具 举报

0

主题

885

帖子

2946

积分

vip会员

Rank: 1

积分
2946
发表于 2016-7-3 20:52:22 来自手机 | 显示全部楼层
真的是全套吗?
回复 支持 反对

使用道具 举报

0

主题

913

帖子

3009

积分

vip会员

Rank: 1

积分
3009
发表于 2016-7-4 10:48:16 | 显示全部楼层
加油摸摸大,感谢楼主分享
回复 支持 反对

使用道具 举报

0

主题

854

帖子

2831

积分

vip会员

Rank: 1

积分
2831
发表于 2016-7-4 10:48:16 来自手机 | 显示全部楼层
这个支持了呀,不错,顶顶帖拿拿钱
回复 支持 反对

使用道具 举报

0

主题

840

帖子

2796

积分

vip会员

Rank: 1

积分
2796
发表于 2016-7-4 22:49:06 来自手机 | 显示全部楼层
好东西,所噶
回复 支持 反对

使用道具 举报

0

主题

820

帖子

2666

积分

vip会员

Rank: 1

积分
2666
发表于 2016-7-21 23:15:42 来自手机 | 显示全部楼层
我吭哧瘪肚 终于下载下来了,但是不会用- -
回复 支持 反对

使用道具 举报

0

主题

854

帖子

2809

积分

vip会员

Rank: 1

积分
2809
发表于 2016-7-22 09:05:20 来自手机 | 显示全部楼层
不错 可以下来研究研究
回复 支持 反对

使用道具 举报

*滑块验证:
您需要登录后才可以回帖 登录 | enginedx注册

本版积分规则

 
 



邮件留言:


 
返回顶部