Guest User

Untitled

a guest
Mar 12th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #TouhouDanmakufu[Stage]
  2. #Title[BG Test]
  3. #Text[BG Test]
  4. #Image[.\bg.png]
  5. #PlayLevel[Easy]
  6. #Player[player\Reimu\reimu.dnh,player\Marisa\marisa.dnh]
  7. #ScriptVersion[2]
  8.  
  9. script_stage_main {
  10. #include_function "lib\ld\common.dnh"
  11.  
  12. let BG_HEIGHT = 600;
  13.  
  14. let ImgBG = ".\bg.png";
  15.  
  16. @Initialize {
  17. LoadGraphic(ImgBG);
  18. }
  19.  
  20. @MainLoop {
  21. yield;
  22. }
  23.  
  24. @BackGround {
  25. SetTexture(ImgBG);
  26. SetGraphicRect(0,0,384,448);
  27. SetAlpha(255);
  28. DrawGraphic(GetCenterX,GetCenterY);
  29. }
  30.  
  31. @Finalize {
  32.  
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment