Hello, I’m building a Menu that looks like a book. Whenever you change I change page, I make visible an extra set of pages (on top of the existing ones) and move the child widget of the current page (by using addWidget
in blueprints) to the “extra” pages. This is done to make sure I can do a nice transition when turning the page, and to avoid having to duplicate all the pages of the book.
The system works well, but on some pages I can see the layout of the extra pages is wrong for one frame, after which it fixes itself. I tried to call Force Layout Prepass
on the extra pages after adding all the child widgets to them, but that didn’t seem to do anything.
Anybody has any idea about what could be happening and how to solve it?