DNARoma
DNARoma
**Motivation.** User can only add cards to team filtered by character and stars, which is not very convenient. Also, song recommender gives score of songs by random skill order, users...
No test suite for this project is implemented yet. Good tests can find problems before publishing it online. It's a long-term job, and supposed to be accomplished step by step.
**Code** ```python def extract_clip(animation_clip: UnityPy.classes.AnimationClip): motion = {} # read meta data motion["Name"] = animation_clip.m_Name motion["SampleRate"] = animation_clip.m_SampleRate motion["Duration"] = format_float(animation_clip.m_MuscleClip.m_StopTime) motion["TrackList"] = [] motion["Events"] = [] if is_verbose: print(...