Page 3 of 3

Re: Adventure Creator - Load save mid-conversation

Posted: Mon Feb 18, 2019 2:41 pm
by Tony Li
AC's Remember Visibility component works on renderers such as SpriteRenderer, not on GameObjects. It also requires the GameObject to be active or Remember Visibility won't be able to function.

The solution is to set all of the GameObjects active, set their Visibility on start to Off, and change the sequences from:

Code: Select all

SetActive(black,false);
SetActive(pink,true);
to:

Code: Select all

SetEnabled(SpriteRenderer,false,black);
SetEnabled(SpriteRenderer,true,pink)

Re: Adventure Creator - Load save mid-conversation

Posted: Tue Feb 19, 2019 10:38 am
by DragoonHP
Thanks a lot. :)

Re: Adventure Creator - Load save mid-conversation

Posted: Tue Feb 19, 2019 11:14 am
by Tony Li
Glad to help!