Hi there,
here is my problem. I have a room with a closed door.
When the player us a lever a stream of water is coming out of a tube.
That all works fine, but now my problem.
I've tried a simple plane with a water material set on the floor, after using the lever, i start a timer
void WaterRiseFunc(string &in asTimer)
{
AddBodyForce("Plane",10000,10000,10000,"");
AddBodyImpulse("Plane",10000,10000,10000,"");
AddPropForce("Plane",10000,10000,10000,"");
AddPropImpulse("Plane",10000,10000,10000,"");
AddTimer("WaterRise",1,"WaterRiseFunc");
}
so the water should rise.
Of course it doesn't work.
I also have tried the entity "water planes" from the "special" menu.
Again, it doesnt work.
I also have tried values like 50000, nothing.
I've tried to load the "water planes" ent file in the editor and set it to automove, but then the game crashed.
If anyone can help me to rise the water, would be great.