Image Picker and 3D object
The Image Picker is not working in combination with a 3D texture. For example if you use the Picture Frame template and you use the Image Picker as the visual texture it's not showing the UI in Snapchat. If you use the Face Image Picker as the texture it works fine. Is this a known bug? Or is there something i'm missing.
Hi Danny!
Could you provide a bit more info or elaborate the problem in some more details? If you could provide step by step instructions of how to reproduce it, that would be cool!
As for showing the Image Picker UI, here is a way to do so: make a SceneObject and attach a Script component with a script to it. Add these lines to the script and add the Image Picker texture to the script's input. You should be able to see the Image Picker in the Preview panel.
//@input Asset.Texture picker
script.picker.control.showImagePicker();
script.picker.control.setImageChangedCallback(function() {
print("Image changed"); //script.picker - is a reference to the chosen texture
});