As far as I can tell, there is currently no way to convert an integer to its equivalent enum value of a specific type.
The specific case that I ran into is that there is no way to do something like `HumanBodyBones bone = (HumanBodyBones)18; if I wanted to get the bone for the right hand for instance. You can't just reasonably use HumanBodyBones.Hand in many cases, for instance iterating over all potential values in an enum is not possible at the moment as far as I know due to this.