trying to convert to lite-c, but i got an issue. I was holding off on converting because i know i would have trouble.

the problem is i keep getting compile errors that state a certain object is no longer a member of a certain class.

i.e. "v: is not a member of ENTITY"

the code is is simply:

Code:
action conveyer()
{
   while (1)
   {
      my.v += conveyer_speed * time_step;
      wait (1);
   }
}
 


i had problems with other members that used to work as well before the conversion. I did search the forums but i didn't find what i was looking for. I'm hoping i don't have to overload the ENTITY class to get it to work. I figured that the manual would have said so, but according to them, what is written above is the right way to code it.

Any help is appreciated.


a8 commercial