I use the resource https://rive.app/community/1714-4322-rives-animated-emojis/, and i want to get one of them. I don't know how to get the Nested Artboard!
Asked
Active
Viewed 104 times
1 Answers
1
Not sure if you found a solution for this already, but according to this response in this Github issue,
to get the nested artboard to show through, you should instance the Artboard when you set it up with the Rive widget, so your setup would go from:
Rive(artboard: riveFile.artboardByName("artboard"));
to
Rive(artboard: riveFile.artboardByName("artboard")!.instance());
more detail in the link. I hope this helps!
Edit: making it an answer

karebae
- 66
- 1
- 4
-
1This is a comment not a answer! – Vishal Beep Jul 14 '22 at 07:12
-
Ohh got it, thanks, will change :) – karebae Jul 14 '22 at 21:10