home *** CD-ROM | disk | FTP | other *** search
/ PC Open 14 / pcopen14.iso / Zipped / CREATORE.ZIP / DATA.Z / bounce.mmb next >
Encoding:
Text File  |  1997-08-19  |  347 b   |  29 lines

  1. This behaviour was generated using Creator Pro.
  2. Copyright cenobyte 1996-1998
  3.  
  4. [NAME]
  5. Bouncing Object
  6.  
  7. [VAR]
  8. x
  9. y
  10.  
  11. [SCRIPT]
  12. if (x=0) then
  13.   x=4
  14.   y=4
  15. endif
  16. object.move(x, y)
  17. if (object.x<1)
  18.   x=4
  19. endif
  20. if (object.x+object.width>XRES)
  21.   x=-4
  22. endif
  23. if (object.y<1)
  24.   y=4
  25. endif
  26. if (object.y+object.height>YRES)
  27.   y=-4
  28. endif
  29.