i want to use mouth opened event on every millisecond or on UpdateEvent
please tell if im doing write
please tell if im doing write
What system are you using?
Have you downloaded the latest version of Lens Studio?
Is this issue causing Lens Studio to crash?
Version
Graphics
Attach a screenshot of the issue:
Name:
Email:
What is this most relevant to?
Please enter a brief description of your issue:
Unfortunately, it's likely due to the operating system or hardware you're using – since they don't meet the system requirements for Lens Studio.
Still, we hear you loud and clear, and are logging the issue in case there's ever a workaround we can provide!
Minimum Requirements
Operating System: Windows 10 (64 bit); MacOS 10.11+
Hardware: Minimum of Intel Core i3 2.5Ghz or AMD Phenom II 2.6Ghz with 4 GB RAM; Intel HD Graphics 4000 / Nvidia GeForce 710 / AMD Radeon HD 6450 or better; screen resolution of 1280x768 or higher
Keep an eye out for a followup email from us. We may have a couple more questions for you, or we might already have a solution to offer.
Happy creating!
I don't think you would really want to create that many events. What are you trying to accomplish? Most likely you only need one mouth open and mouth closed event that interacts with whatever the update event is doing.
Hi Syed,
Brandon is right, it won't be good to bind an event on every update as it will make the lens really slow since the Lens will look for the user opening their mouth multiple times.
You usually want to bind it once like
script.createEvent("MouthOpenedEvent").bind(function() {print("mouth just opened");}
);
Take a look at the API page for more examples: https://lensstudio.snapchat.com/api/classes/MouthOpenedEvent/
If you'd like to track how wide the opening of the mouth is to drive something, take a look at this template:
https://lensstudio.snapchat.com/templates/face/paper-head/
Can't wait to see what you come up with!
Cheers,
Jonathan