OdysseyDecomp/lib/al/Project/Effect/EffectLight.cpp
2025-08-29 10:36:58 +02:00

14 lines
340 B
C++

#include "Project/Effect/EffectLight.h"
#include <math/seadMathCalcCommon.h>
namespace al {
void EffectLight::set(const sead::Vector3f& pos, f32 intensity, const sead::Color4f& color,
bool enabled) {
mPosition = pos;
mIntensity = intensity;
mColor = color;
mIsEnabled = enabled;
}
} // namespace al