Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. ublic class ObjectRaisingScript : MonoBehaviour {
  2.  
  3. public float tranformY = -100.0f;
  4. public float proximityToPlayer = 40.0f;
  5.  
  6. // Use this for initialization
  7. void Start ()
  8. {
  9. transform.position += new Vector3(0.0f, tranformY, 0.0f);
  10. }
  11.  
  12. // Update is called once per frame
  13. void Update ()
  14. {
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement