Page 1 of 1

Clipping after loading the game

Posted: Fri Apr 24, 2015 6:38 pm
by Drakkan
I have some automatic tiles placed (for example forest_underwater) on which I place manualy some tile objects (like beach_ground_01)
when I start the game everything is ok. After saving / load, it is clipping horribly. Any clues which parameter is causing this or what can be done about it and why it is working at start and after load not ?

Re: Clipping after loading the game

Posted: Fri Apr 24, 2015 6:46 pm
by minmay
you changed the state of an object with minimalSaveState, which is lost when the object is respawned on reload
solution: dont do that

Re: Clipping after loading the game

Posted: Fri Apr 24, 2015 7:25 pm
by Drakkan
minmay wrote:you changed the state of an object with minimalSaveState, which is lost when the object is respawned on reload
solution: dont do that
I was suspecting that parameter... thanks minmay