mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-25 07:35:34 -07:00
Wide Link while climbing
This commit is contained in:
parent
af3ebf9a08
commit
b5b0990e83
1 changed files with 11 additions and 3 deletions
|
@ -11030,15 +11030,23 @@ void Player_Update(Actor* thisx, PlayState* play) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->actor.scale.x = 0.01f) {
|
if (this->stateFlags1 & PLAYER_STATE1_21) {
|
||||||
|
this->actor.scale.x = 0.02f;
|
||||||
|
this->actor.scale.y = 0.009f;
|
||||||
|
this->actor.scale.z = 0.009f;
|
||||||
|
} else if (this->actor.scale.x == 0.02f) {
|
||||||
|
GameInteractor_SetLinkSize(GI_LINK_SIZE_RESET);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this->actor.scale.x == 0.01f) {
|
||||||
this->actor.scale.x = 0.009f;
|
this->actor.scale.x = 0.009f;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->actor.scale.y = 0.01f) {
|
if (this->actor.scale.y == 0.01f) {
|
||||||
this->actor.scale.y = 0.009f;
|
this->actor.scale.y = 0.009f;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->actor.scale.z = 0.01f) {
|
if (this->actor.scale.z == 0.01f) {
|
||||||
this->actor.scale.z = 0.009f;
|
this->actor.scale.z = 0.009f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue