Re: Adventure Creator - Load save mid-conversation
Posted: Mon Feb 18, 2019 2:41 pm
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:
to:
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);
Code: Select all
SetEnabled(SpriteRenderer,false,black);
SetEnabled(SpriteRenderer,true,pink)