We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e334e4 commit 728c49fCopy full SHA for 728c49f
src/xrPhysics/PHObject.h
@@ -87,8 +87,8 @@ class CPHObject : public SpatialBase
87
void Freeze();
88
void UnFreeze();
89
IC bool IsFreezed() { return !!(m_flags.test(st_freezed)); }
90
- void NetInterpolationON() { m_flags.set(st_net_interpolation, TRUE); }
91
- void NetInterpolationOFF() { m_flags.set(st_net_interpolation, TRUE); }
+ void NetInterpolationON() { m_flags.set(st_net_interpolation, true); }
+ void NetInterpolationOFF() { m_flags.set(st_net_interpolation, false); }
92
bool NetInterpolation() { return !!(m_flags.test(st_net_interpolation)); }
93
virtual u16 get_elements_number() = 0;
94
virtual CPHSynchronize* get_element_sync(u16 element) = 0;
0 commit comments