πΈMotion Warping Component
In this section you will learn how to work with Motion Warping component.
Last updated
In this section you will learn how to work with Motion Warping component.
Last updated
public class YourController : MonoBehaviour
{
//...
private MotionWarping _warpingComponent;
//...
private void Start()
{
//...
_warpingComponent = GetComponent<MotionWarping>();
//...
}
}