UnityEngine.HumanPoseHandler.INTERNAL_CALL_Internal_SetHumanPose C# (CSharp) Method

INTERNAL_CALL_Internal_SetHumanPose() private method

private INTERNAL_CALL_Internal_SetHumanPose ( HumanPoseHandler self, Vector3 &bodyPosition, Quaternion &bodyRotation, float muscles ) : bool
self HumanPoseHandler
bodyPosition Vector3
bodyRotation Quaternion
muscles float
return 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));
 }