UnityEngine.HumanPoseHandler.INTERNAL_CALL_Internal_SetHumanPose C# (CSharp) Метод

INTERNAL_CALL_Internal_SetHumanPose() приватный Метод

private INTERNAL_CALL_Internal_SetHumanPose ( HumanPoseHandler self, Vector3 &bodyPosition, Quaternion &bodyRotation, float muscles ) : bool
self HumanPoseHandler
bodyPosition Vector3
bodyRotation Quaternion
muscles float
Результат bool
        private static extern bool INTERNAL_CALL_Internal_SetHumanPose(HumanPoseHandler self, ref Vector3 bodyPosition, ref Quaternion bodyRotation, float[] muscles);
        private bool Internal_GetHumanPose(ref Vector3 bodyPosition, ref Quaternion bodyRotation, float[] muscles)

Usage Example

Пример #1
0
 private bool Internal_SetHumanPose(ref Vector3 bodyPosition, ref Quaternion bodyRotation, float[] muscles)
 {
     return(HumanPoseHandler.INTERNAL_CALL_Internal_SetHumanPose(this, ref bodyPosition, ref bodyRotation, muscles));
 }