Files
2023-04-23 21:57:20 +08:00

15 lines
221 B
C++

#include "postprocess.h"
namespace engine
{
bool PostprocessVolumeComponent::changeSetting(const PostprocessVolumeSetting& in)
{
if (in != m_settings)
{
m_settings = in;
return true;
}
return false;
}
}