So im testing my game an notice that the player's pokemon inital position has changed from what i had set.
What is should look like...Older Version of my game in Essentials 15
In the psb:
What is actually look like...Current Version of my game in Essentials 15
In the psb:
its not just Torterra(its just the one I had on me), all of my pokemon are moved down on the screen a bit.
also
Older Version in PokeBatle_SceneConstants
Current Version in PokeBatle_SceneConstants
Furthermore if its any consaltation when a pokemon mega Evolves or Form Changes it fixes its position.
Before Mega
After Mega
What is should look like...Older Version of my game in Essentials 15
Spoiler:
![[PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me? [PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me?](https://i.imgur.com/tgpPJ4o.png)
In the psb:
Code:
BattlerPlayerY=9
BattlerEnemyY=3
BattlerAltitude=0
What is actually look like...Current Version of my game in Essentials 15
Spoiler:
![[PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me? [PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me?](https://i.imgur.com/xcbQ7IT.png)
In the psb:
Code:
BattlerPlayerY=9
BattlerEnemyY=3
BattlerAltitude=0
its not just Torterra(its just the one I had on me), all of my pokemon are moved down on the screen a bit.
also
Older Version in PokeBatle_SceneConstants
Spoiler:
Code:
# Coordinates of the centre bottom of the player's battler's sprite
# Is also the centre middle of its shadow
PLAYERBATTLER_X = 128
PLAYERBATTLER_Y = Graphics.height - 80
PLAYERBATTLERD1_X = PLAYERBATTLER_X - 48
PLAYERBATTLERD1_Y = PLAYERBATTLER_Y
PLAYERBATTLERD2_X = PLAYERBATTLER_X + 32
PLAYERBATTLERD2_Y = PLAYERBATTLER_Y + 16
Current Version in PokeBatle_SceneConstants
Spoiler:
Code:
# Coordinates of the centre bottom of the player's battler's sprite
# Is also the centre middle of its shadow
PLAYERBATTLER_X = 128
PLAYERBATTLER_Y = Graphics.height - 80
PLAYERBATTLERD1_X = PLAYERBATTLER_X - 48
PLAYERBATTLERD1_Y = PLAYERBATTLER_Y
PLAYERBATTLERD2_X = PLAYERBATTLER_X + 32
PLAYERBATTLERD2_Y = PLAYERBATTLER_Y + 16
Furthermore if its any consaltation when a pokemon mega Evolves or Form Changes it fixes its position.
Spoiler:
Before Mega
![[PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me? [PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me?](https://41.media.tumblr.com/11695b70814b6b0a98735b0c82a0e936/tumblr_o1b391OVGT1tmpg7po2_540.png)
After Mega
![[PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me? [PokeCommunity.com] Player's Pokemon Sprite Position has changed on. me?](https://36.media.tumblr.com/8a6429ff8563b44919f6dcc87b57c8d4/tumblr_o1b391OVGT1tmpg7po1_540.png)