Jonathan Solichin
- Total activity 647
- Last activity
- Member since
- Following 0 users
- Followed by 32 users
- Votes 15
- Subscriptions 274
Comments
Recent activity by Jonathan Solichin Sort by recent activity-
Hi Josh, Lens Studio should be able to import an obj without a problem. Are you using the File > Import button or something else? The import button that shows up when you right click the Objects p...
-
Hi Zach! You can add a script on Initialized to set the animation position when the Lens is loaded: //@input Asset.Texture texturescript.texture.control.pauseAtFrame(0); Then, when you use that scr...
-
Hi Shaimaaa, You can do this by creating a script that takes the current touch position and applies to the binding point of the text: To use this, in the resources panel, press Add > Script Then...
-
Hi Lauren! That's so cool that you are using Lens Studio for a uni project. Take a look at https://lensstudio.snapchat.com/guides/scripting/behavior-script/ which will allow you to enable and disab...
-
Hi Topher! Hmm Interesting, it seems like there is no object referenced on line 6 of script.js. Is all the fields in the Inspector panel of the object with script.js filled? If that's the not the ...
-
Hi Daniel! 1. You can swap the materials using this script // -----JS CODE-----// @input Asset.Material[] materialsvar nextMaterialIndex = 0;// Define what happens when you tap.function changeColo...
-
Hi Image! You're right, you'll need to change the way the camera is chained. But you should be able to just redirect what the Segmentation template comes with. By default the chain is Orthographic...
-
Hi Miguel, I’m excited to see your experience! Thanks for pointing this out, it’s good to always check the RAM usage of Lenses. The size of this lens is large because we provided high resolution te...
-
Hi One More Admin, Currently we don't have a way to directly figure out whether the phone is in vertical or landscape mode. We'll investigate a future feature to make this more built in, such as an...
-
Hi Sammy! You can generate a basic texture that the user can draw on by allowing them to move an object, and then feeding that result to itself so it continues to draw on top of itself. First let'...