This commit is contained in:
Dragorn421 2025-06-01 21:42:31 +02:00
parent 3784fcd110
commit 4f28b5f84c
No known key found for this signature in database
GPG Key ID: 381AEBAF3D429335
1 changed files with 9 additions and 9 deletions

View File

@ -207,11 +207,11 @@ void EnHeishi1_Walk(EnHeishi1* this, PlayState* play) {
Math_ApproachF(&this->headAngle, this->headAngleTarget, this->headTurnSpeedScale, this->headTurnSpeedMax);
if (DEBUG_FEATURES && (this->path == BREG(1)) && (BREG(0) != 0)) {
PRINTF(VT_FGCOL(RED) T(" 種類 %d\n"," Type %d\n") VT_RST, this->path);
PRINTF(VT_FGCOL(RED) T(" ぱす %d\n"," Path %d\n") VT_RST, this->waypoint);
PRINTF(VT_FGCOL(RED) T(" 反転 %d\n"," Turning around %d\n") VT_RST, this->bodyTurnSpeed);
PRINTF(VT_FGCOL(RED) T(" 時間 %d\n"," Time %d\n") VT_RST, this->waypointTimer);
PRINTF(VT_FGCOL(RED) T(" 点座 %d\n"," Tenza %d\n") VT_RST, path->count);
PRINTF(VT_FGCOL(RED) T(" 種類 %d\n", " Type %d\n") VT_RST, this->path);
PRINTF(VT_FGCOL(RED) T(" ぱす %d\n", " Path %d\n") VT_RST, this->waypoint);
PRINTF(VT_FGCOL(RED) T(" 反転 %d\n", " Turning around %d\n") VT_RST, this->bodyTurnSpeed);
PRINTF(VT_FGCOL(RED) T(" 時間 %d\n", " Time %d\n") VT_RST, this->waypointTimer);
PRINTF(VT_FGCOL(RED) T(" 点座 %d\n", " Tenza %d\n") VT_RST, path->count);
PRINTF("\n\n");
}
@ -325,10 +325,10 @@ void EnHeishi1_Wait(EnHeishi1* this, PlayState* play) {
this->headTurnSpeedMax + this->headTurnSpeedMax);
if (DEBUG_FEATURES && (this->path == BREG(1)) && (BREG(0) != 0)) {
PRINTF(VT_FGCOL(GREEN) T(" 種類 %d\n"," Type %d\n") VT_RST, this->path);
PRINTF(VT_FGCOL(GREEN) T(" ぱす %d\n"," Path %d\n") VT_RST, this->waypoint);
PRINTF(VT_FGCOL(GREEN) T(" 反転 %d\n"," Turning around %d\n") VT_RST, this->bodyTurnSpeed);
PRINTF(VT_FGCOL(GREEN) T(" 時間 %d\n"," Time %d\n") VT_RST, this->waypointTimer);
PRINTF(VT_FGCOL(GREEN) T(" 種類 %d\n", " Type %d\n") VT_RST, this->path);
PRINTF(VT_FGCOL(GREEN) T(" ぱす %d\n", " Path %d\n") VT_RST, this->waypoint);
PRINTF(VT_FGCOL(GREEN) T(" 反転 %d\n", " Turning around %d\n") VT_RST, this->bodyTurnSpeed);
PRINTF(VT_FGCOL(GREEN) T(" 時間 %d\n", " Time %d\n") VT_RST, this->waypointTimer);
PRINTF("\n\n");
}
}