home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / basic3d / exam01.dba < prev    next >
Encoding:
Text File  |  2000-04-09  |  514 b   |  24 lines

  1. Rem * Title  : Your First Model
  2. Rem * Author : DBS-LB
  3. Rem * Date   : 1st Sept 99
  4. rem ==========================================
  5. rem DARK BASIC EXAMPLE PROGRAM 1
  6. rem ==========================================
  7. rem This program loads your first model
  8. rem ------------------------------------------
  9.  
  10. rem Load your object
  11. load object "walk.x",1
  12.  
  13. rem Animate your object
  14. play object 1
  15.  
  16. rem Press any key to continue
  17. suspend for key
  18.  
  19. rem Delete your object
  20. delete object 1
  21.  
  22. rem End the program
  23. end
  24.