Fix tweak for electricity effect
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 23s

This commit is contained in:
Stephen Seo 2023-08-24 15:09:59 +09:00
parent fb7514139f
commit d7351f9e3b

View file

@ -81,6 +81,6 @@ void ElectricityEffect::draw(Color color) {
for (const auto &cylinder : cylinders) {
DrawCylinderEx(cylinder.start, cylinder.end, CYLINDER_MAX_RADIUS * ratio,
CYLINDER_MAX_RADIUS * ratio, 8, color);
CYLINDER_MAX_RADIUS * ratio, CYLINDER_SIDES, color);
}
}