Minor refactoring
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 17s

This commit is contained in:
Stephen Seo 2023-08-11 14:24:34 +09:00
parent b0d50c6589
commit fcd6deb435

View file

@ -35,7 +35,7 @@ class Walker {
Walker(float x, float z, bool auto_roaming, float body_height = 2.0F, Walker(float x, float z, bool auto_roaming, float body_height = 2.0F,
float body_feet_radius = 1.7F, float feet_radius = 1.5F); float body_feet_radius = 1.7F, float feet_radius = 1.5F);
template <typename BBCountT, BBCountT BBCount> template <std::size_t BBCount>
void update(float dt, const std::array<BoundingBox, BBCount> &bbs, void update(float dt, const std::array<BoundingBox, BBCount> &bbs,
unsigned int width, unsigned int height); unsigned int width, unsigned int height);
@ -76,7 +76,7 @@ class Walker {
float roaming_timer; float roaming_timer;
}; };
template <typename BBCountT, BBCountT BBCount> template <std::size_t BBCount>
void Walker::update(float dt, const std::array<BoundingBox, BBCount> &bbs, void Walker::update(float dt, const std::array<BoundingBox, BBCount> &bbs,
unsigned int width, unsigned int height) { unsigned int width, unsigned int height) {
if ((flags & 4) != 0 && (flags & 3) == 0) { if ((flags & 4) != 0 && (flags & 3) == 0) {