For example, I am trying to replace deprecated command setloc() with setLocation() in my module. I have a class that inherits from FlexSimObject. In one of its member functions, I am trying to call
this->setLocation(0.0, 0.0, 0.0);
But the compiler shows error:
error LNK2019: unresolved external symbol
How to fix this problem? Engine version is 17.1 beta.
BTW, just notice that not only this function, all other ObjectDataType functions or properties such as getLocation(), setSize(), location, rotation, etc. cannot be compiled properly if I call them in my module.
Thanks, Hao