Hi,
I wrote some custom properties as below:
m_NormalStressDelta[0] = 1.0;
double tmp1 = m_NormalStress[0];
but when I debug the code, I saw the values of tmp changes from 0 to 1 to 2 etc. Increasing with time.
But what I want is to give a m_NormalStress a certain value, means 1.0 all the time. But seems that for m_NormalStress it was "+=‘’ with time, not "=" even I wrote like this.
Thanks