Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class ApplyRotationTo : MonoBehaviour
- {
- public Transform childRotation;
- public void LateUpdate()
- {
- if (childRotation != null)
- {
- childRotation.rotation = gameObject.transform.rotation;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment