Make Goblin Boar Rider sprite a bit more sensible. Mounted monster animations now properly update. Release Build 9200.

mac-build
sigonasr2 7 months ago
parent 3fafcd39f3
commit 45060e9160
  1. 1
      Adventures in Lestoria/Monster.cpp
  2. 2
      Adventures in Lestoria/Version.h
  3. BIN
      Adventures in Lestoria/assets/gamepack.pak
  4. BIN
      x64/Release/Adventures in Lestoria.exe

@ -345,6 +345,7 @@ bool Monster::Update(float fElapsedTime){
}
}
animation.UpdateState(internal_animState,randomFrameOffset+fElapsedTime);
if(HasMountedMonster())mounted_animation.value().UpdateState(internal_mounted_animState.value(),fElapsedTime);
randomFrameOffset=0;
attackedByPlayer=false;
return true;

@ -39,7 +39,7 @@ All rights reserved.
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define VERSION_PATCH 0
#define VERSION_BUILD 9199
#define VERSION_BUILD 9200
#define stringify(a) stringify_(a)
#define stringify_(a) #a

Loading…
Cancel
Save