The parameter for a set method of a property isn't understood by VA. No suggestion list appears when typing.
property float GammaCorrection
{
float get() {return m_GammaCorrection;};
void set(float gammaCorrection)
{
if (m_GammaCorrection != gammaCorrection)
ReloadPoints = true;
m_GammaCorrection = gammaCorrection;
};
}
In this code snip gammaCorrection is underlined.
Forgot to mention that this is in the header file with the class definition. Works fine once moved to the source file.
Once case=7806 is added then maybe this won't be an issue (shameless plug for feature).
Mark