Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. tfm.exec.addPhysicObject(0,-50,-800,{
  2. type=8,
  3. dynamic=true,
  4. friction=999e999,
  5. linearDamping=999
  6. })
  7. tfm.exec.addPhysicObject(1,-50,-830,{
  8. type=8,
  9. dynamic=true
  10. })
  11. tfm.exec.addPhysicObject(2,0,-800,{
  12. type=8,
  13. mass=-999999
  14. })
  15. tfm.exec.addPhysicObject(3,400,210,{
  16. type=8,
  17. width=800,
  18. height=400,
  19. miceCollision=false,
  20. mass=-999999
  21. })
  22. tfm.exec.addJoint(0,1,2,{
  23. type=1,
  24. point1="-50,-830",
  25. point2="0,-800",
  26. })
  27. tfm.exec.addJoint(0,2,1,{
  28. type=1,
  29. point1="0,-800",
  30. point2="-50,-830",
  31. })
  32. tfm.exec.addJoint(0,1,3,{
  33. type=1,
  34. point1="-50,-830",
  35. point2="400,210",
  36. })
  37. tfm.exec.addJoint(0,3,1,{
  38. type=1,
  39. point1="400,210",
  40. point2="-50,-830",
  41. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement