home *** CD-ROM | disk | FTP | other *** search
- This behaviour was generated using Creator Pro.
- Copyright cenobyte 1996-1998
-
- [NAME]
- Bouncing Object
-
- [VAR]
- x
- y
-
- [SCRIPT]
- if (x=0) then
- x=4
- y=4
- endif
- object.move(x, y)
- if (object.x<1)
- x=4
- endif
- if (object.x+object.width>XRES)
- x=-4
- endif
- if (object.y<1)
- y=4
- endif
- if (object.y+object.height>YRES)
- y=-4
- endif
-