Refresh lens by tap?
maria lande lund
Posts: 8
I want to make my lens refresh when I tap the screen. Does anyone know how I can do this?😁
0
Answers
-
I've found this solution from another member:
**"Add this script to disable every thing you select when you click
// @input SceneObject[] obj
for (var i = 0;i < script.obj.length; i++)
{script.obj[i].enabled = false ;
}
use a copy of the script and change the false to true
to enable every thing you want when user click"**I didn't try it yet, let me know if it worked for you
2