How can I make corpeses dissapear

Muhsin Kalkan

First time out of the vault
i want to do a tough base defence agains many enemies but computer laggs if there is too many corpeses on the floor and they can close the way

How can i make them dissapear after they die?
 
Critter scripts are deleted as soon as the critter dies, so it's not possible. Maybe something could be done with Sfall, but I'll doubt it (at least with the current release version).
 
Hello. I tested this simple piece of code:
Code:
procedure destroy_p_proc
begin
    set_obj_visibility(Self_obj,1);
end

I'm using FSE for script editing. Just put this into your critter's script. After being killed, critter will disappear instantly. Now, i can't tell will it solve cpu overload problem but it's worth a try:wiggle: Good luck.
 
Back
Top