Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using UnityEngine;
- using System.Collections;
- public class MyScript : MonoBehaviour {
- InteractiveCloth cloth;
- void Start() {
- cloth = GetComponent<InteractiveCloth>();
- }
- void FixedUpdate() {
- cloth.AddForceAtPosition( blah.... )
- }
Advertisement
Add Comment
Please, Sign In to add comment