implementation of drecon in unity 2022 lts
forked from:
https://github.com/joanllobera/marathon-envs
11 lines
265 B
11 lines
265 B
using System;
|
|
using static BodyHelper002;
|
|
|
|
public class BodyConfig
|
|
{
|
|
public Func<string, BodyPartGroup> GetBodyPartGroup;
|
|
public Func<string, MuscleGroup> GetMuscleGroup;
|
|
public Func<BodyPartGroup> GetRootBodyPart;
|
|
public Func<MuscleGroup> GetRootMuscle;
|
|
|
|
}
|
|
|