Integrating Fortnite's facial animation system into your imported character (Modding Tutorial)
Do you want to add a custom modded animation, or a custom emote? Well, you'll probably fail and experience this horrible, uncanny animation that you didn't add.
It's like someone chained your character's hands and feet/legs to a invisible fence. And your character is just staring at you while it's suffering in pain. While it tries to move any part of it's body it can.
However I've studied Unreal Engine and Fortnite's way of animation to basically give you a exact defining way to fix this. It's quite simple but 99% of people won't know this. Yeah, ima nerd.
I don't wanna bore you much about how to do this, so let's get started.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import csv | |
import xml.etree.ElementTree as ET | |
path = input() + '.xml' | |
read = open(path, 'r').read() | |
tree = ET.parse(path) | |
# get root element |