The picking of the object on "SET FACE OBJECT" action doesnt work.
It cannot take the right instance of the family even when picking with an UID.
The event works with the first object in my family but not the second.
Thank you.
Develop games in your browser. Powerful, performant & highly capable.
SOLVED:
There is no way to solve the issue without script.
Found the solution on https://github.com/Scirra/Construct-bugs/issues/7896
given by WilsonPercival.
General code to put as subevent:
const Your3DObject = runtime.objects.Your3DObject .getFirstInstance(); const YourFamily= runtime.objects.YourFamily.getFirstPickedInstance(); Your3DObject .setFaceObject("left[i](or other)[/i]", YourFamily.objectType);