This commit is contained in:
Dragorn421 2025-05-28 06:46:02 +02:00
parent c53c7b939f
commit 20aff463c7
No known key found for this signature in database
GPG Key ID: 381AEBAF3D429335
1 changed files with 7 additions and 7 deletions

View File

@ -154,8 +154,8 @@ void EnNiw_Init(Actor* thisx, PlayState* play) {
if (this->actor.params == 0xB) { if (this->actor.params == 0xB) {
if (sLowerRiverSpawned) { if (sLowerRiverSpawned) {
Actor_Kill(&this->actor); Actor_Kill(&this->actor);
PRINTF(VT_FGCOL(YELLOW) T("☆☆☆☆☆ もういてる原 Ver.1 ☆☆☆☆☆ \n", "☆☆☆☆☆ Hara is already here Ver.1 ☆☆☆☆☆ \n") PRINTF(VT_FGCOL(YELLOW)
VT_RST); T("☆☆☆☆☆ もういてる原 Ver.1 ☆☆☆☆☆ \n", "☆☆☆☆☆ Original is already here Ver.1 ☆☆☆☆☆ \n") VT_RST);
return; return;
} }
sLowerRiverSpawned = true; sLowerRiverSpawned = true;
@ -166,8 +166,8 @@ void EnNiw_Init(Actor* thisx, PlayState* play) {
if (this->actor.params == 0xC) { if (this->actor.params == 0xC) {
if (sUpperRiverSpawned) { if (sUpperRiverSpawned) {
Actor_Kill(&this->actor); Actor_Kill(&this->actor);
PRINTF(VT_FGCOL(YELLOW) T("☆☆☆☆☆ もういてる原 Ver.2 ☆☆☆☆☆ \n", "☆☆☆☆☆ Hara is already here Ver.2 ☆☆☆☆☆ \n") PRINTF(VT_FGCOL(YELLOW)
VT_RST); T("☆☆☆☆☆ もういてる原 Ver.2 ☆☆☆☆☆ \n", "☆☆☆☆☆ Original is already here Ver.2 ☆☆☆☆☆ \n") VT_RST);
return; return;
} }
sUpperRiverSpawned = true; sUpperRiverSpawned = true;
@ -993,11 +993,11 @@ void EnNiw_Update(Actor* thisx, PlayState* play) {
cam.y = play->view.at.y - play->view.eye.y; cam.y = play->view.at.y - play->view.eye.y;
cam.z = play->view.at.z - play->view.eye.z; cam.z = play->view.at.z - play->view.eye.z;
camResult = cam.y / sqrtf(SQ(cam.x) + SQ(cam.y) + SQ(cam.z)); camResult = cam.y / sqrtf(SQ(cam.x) + SQ(cam.y) + SQ(cam.z));
PRINTF(VT_FGCOL(RED) T("☆☆☆☆☆ 範囲外X! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Out of range X! ☆☆☆☆☆ %f\n") VT_RST, PRINTF(VT_FGCOL(RED) T("☆☆☆☆☆ 範囲外X! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ X out of range! ☆☆☆☆☆ %f\n") VT_RST,
thisx->world.pos.x); thisx->world.pos.x);
PRINTF(VT_FGCOL(RED) T("☆☆☆☆☆ 範囲外Y! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Out of range Y! ☆☆☆☆☆ %f\n") VT_RST, PRINTF(VT_FGCOL(RED) T("☆☆☆☆☆ 範囲外Y! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Y out of range! ☆☆☆☆☆ %f\n") VT_RST,
thisx->world.pos.y); thisx->world.pos.y);
PRINTF(VT_FGCOL(RED) T("☆☆☆☆☆ 範囲外Z! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Out of range Z! ☆☆☆☆☆ %f\n") VT_RST, PRINTF(VT_FGCOL(RED) T("☆☆☆☆☆ 範囲外Z! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Z out of range! ☆☆☆☆☆ %f\n") VT_RST,
thisx->world.pos.z); thisx->world.pos.z);
PRINTF(VT_FGCOL(GREEN) T("☆☆☆☆☆ セットX! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Set X! ☆☆☆☆☆ %f\n") VT_RST, thisx->home.pos.x); PRINTF(VT_FGCOL(GREEN) T("☆☆☆☆☆ セットX! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Set X! ☆☆☆☆☆ %f\n") VT_RST, thisx->home.pos.x);
PRINTF(VT_FGCOL(GREEN) T("☆☆☆☆☆ セットY! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Set Y! ☆☆☆☆☆ %f\n") VT_RST, thisx->home.pos.y); PRINTF(VT_FGCOL(GREEN) T("☆☆☆☆☆ セットY! ☆☆☆☆☆ %f\n", "☆☆☆☆☆ Set Y! ☆☆☆☆☆ %f\n") VT_RST, thisx->home.pos.y);