Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #TouhouDanmakufu[Stage]
- #Title[BG Test]
- #Text[BG Test]
- #Image[.\bg.png]
- #PlayLevel[Easy]
- #Player[player\Reimu\reimu.dnh,player\Marisa\marisa.dnh]
- #ScriptVersion[2]
- script_stage_main {
- #include_function "lib\ld\common.dnh"
- let BG_HEIGHT = 600;
- let ImgBG = ".\bg.png";
- @Initialize {
- LoadGraphic(ImgBG);
- }
- @MainLoop {
- yield;
- }
- @BackGround {
- SetTexture(ImgBG);
- SetGraphicRect(0,0,384,448);
- SetAlpha(255);
- DrawGraphic(GetCenterX,GetCenterY);
- }
- @Finalize {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment