osb/source/game/StarEntitySplash.hpp
2023-06-20 14:33:09 +10:00

31 lines
638 B
C++

#ifndef STAR_ENTITY_UTILITIES_HPP
#define STAR_ENTITY_UTILITIES_HPP
#include "StarJson.hpp"
#include "StarParticle.hpp"
namespace Star {
STAR_CLASS(World);
STAR_STRUCT(EntitySplashConfig);
STAR_CLASS(EntitySplashHelper);
struct EntitySplashConfig {
EntitySplashConfig();
EntitySplashConfig(Json const& config);
float splashSpeedMin;
Vec2F splashBottomSensor;
Vec2F splashTopSensor;
float splashMinWaterLevel;
int numSplashParticles;
Particle splashParticle;
Particle splashParticleVariance;
float splashYVelocityFactor;
List<Particle> doSplash(Vec2F position, Vec2F velocity, World* world) const;
};
}
#endif