Hello guys,
I am new to 3D Game Studio, and I have some problems regarding the physics of the models. In my project, I added an action to my model, a car in this case. The actions disables and enables the physics on the model and preform car movement. However, I couldn't move the car after the physics is disabled.
The code snippet is shown below, hope it is clear.
#in the infinite loop
if(key_cuu == on)
{
phent_enable(me,0);
c_move(my,vector(speed,0,0),nullvector, glide);
phent_enable(me,1);
}

The c_move is not working after I disabled the physics. Do you guys have any solutions? Thanks in advance.