mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 19:36:20 +03:00
15 lines
221 B
C++
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;
|
|
}
|
|
} |