v1.00b2
This commit is contained in:
parent
a25c13d846
commit
ff758346fb
17 changed files with 76 additions and 11 deletions
|
@ -41,7 +41,7 @@ let POINTER_CHAIN = LoadAreaCommonDataValuePointer("PIV", "ChainAmount", 1);
|
|||
|
||||
@Initialize {
|
||||
|
||||
SetIntersectionVisualization(true);
|
||||
//SetIntersectionVisualization(true);
|
||||
|
||||
SetAutoDeleteObject(true);
|
||||
|
||||
|
@ -463,16 +463,18 @@ task EndBonus(){
|
|||
|
||||
string RANK_TITLE = "C";
|
||||
|
||||
if(scoreMilNum > 300) {RANK_TITLE = "UNBEATABLE!!!";}
|
||||
else if(scoreMilNum > 240){RANK_TITLE = "RANK S!!";}
|
||||
else if(scoreMilNum > 160){RANK_TITLE = "RANK A!";}
|
||||
else if(scoreMilNum > 100){RANK_TITLE = "RANK B";}
|
||||
if(scoreMilNum >= 400) {RANK_TITLE = "okay seriously what the fuck";}
|
||||
else if(scoreMilNum >= 300) {RANK_TITLE = "UNBEATABLE!!!";}
|
||||
else if(scoreMilNum >= 240){RANK_TITLE = "RANK S!!";}
|
||||
else if(scoreMilNum >= 160){RANK_TITLE = "RANK A!";}
|
||||
else if(scoreMilNum >= 100){RANK_TITLE = "RANK B";}
|
||||
else {RANK_TITLE = "RANK C";}
|
||||
|
||||
if(scoreMilNum > 300) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0xFF1B1B, RANK_TITLE);}
|
||||
else if(scoreMilNum > 240) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0xFFA31B, RANK_TITLE);}
|
||||
else if(scoreMilNum > 160) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0x5CEB0F, RANK_TITLE);}
|
||||
else if(scoreMilNum > 100) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0x0F9BEB, RANK_TITLE);}
|
||||
if(scoreMilNum >= 400) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0xFF1B1B, RANK_TITLE);}
|
||||
else if(scoreMilNum >= 300) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0xFF1B1B, RANK_TITLE);}
|
||||
else if(scoreMilNum >= 240) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0xFFA31B, RANK_TITLE);}
|
||||
else if(scoreMilNum >= 160) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0x5CEB0F, RANK_TITLE);}
|
||||
else if(scoreMilNum >= 100) {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0x0F9BEB, RANK_TITLE);}
|
||||
else {_CreateBonusText(STG_WIDTH/2, STG_HEIGHT/2+140, 40, 0xB10FEB, RANK_TITLE);}
|
||||
|
||||
wait(60);
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 373 KiB After Width: | Height: | Size: 468 KiB |
BIN
script/Jam10/PackageLib/NarumiBanner.png
Normal file
BIN
script/Jam10/PackageLib/NarumiBanner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 330 KiB |
BIN
script/Jam10/PackageLib/NarumiImg2.png
Normal file
BIN
script/Jam10/PackageLib/NarumiImg2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 MiB |
|
@ -1,4 +1,5 @@
|
|||
let bossBG = "script/Jam10/resourceLib/Jam10_BG.png";
|
||||
let overlayBG = "script/Jam10/resourceLib/Overlay.png";
|
||||
let soundWarn = ObjSound_Create();
|
||||
let alphaMax = 255*((GetAreaCommonData("Config", "BGOpacity", 100))/100);
|
||||
let exVol = GetAreaCommonData("Config", "SEVol", 100) * 0.01;
|
||||
|
@ -20,7 +21,14 @@ function <void> _ScrollBackground(){
|
|||
ObjRender_SetScaleXYZ(BossImg, 1);
|
||||
ObjRender_SetPosition(BossImg, STG_WIDTH/2, STG_HEIGHT/2, 1);
|
||||
Obj_SetRenderPriorityI(BossImg, 24);
|
||||
|
||||
int OverlayImg = _Create2DImage(overlayBG, [0, 0, 640*4, 720]);
|
||||
ObjRender_SetScaleXYZ(OverlayImg, 1);
|
||||
ObjRender_SetPosition(OverlayImg, STG_WIDTH/2, STG_HEIGHT/2, 1);
|
||||
Obj_SetRenderPriorityI(OverlayImg, 23);
|
||||
|
||||
ObjRender_SetAlpha(OverlayImg, 255);
|
||||
|
||||
float scrollSpeed = 0;
|
||||
float maxscrollSpeed = 14;
|
||||
int curScroll = 0;
|
||||
|
|
Binary file not shown.
Binary file not shown.
BIN
script/Jam10/resourceLib/Overlay.png
Normal file
BIN
script/Jam10/resourceLib/Overlay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
Loading…
Add table
Add a link
Reference in a new issue