
Michael French
- Total activity 22
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
Comments
Recent activity by Michael French Sort by recent activity-
Assuming your two images have ScreenTransform components on them, you can do something like below. (You can pull it out of the onUpdate function and just call it when necessary if you don't need it...
-
Maybe try something like: //@input Component.Image imgvar currentColor = script.img.mainPass.baseColor;var newAlpha = .5;var newColor = new vec4(currentColor.r, currentColor.g, currentColor.b, newA...
-
If you mean the number in the small box at the top of the inspector for some objects, you're probably referring to render order (the term layer refers to something else; layers dictate what objects...
-
Oh nice one Brent. I finally understood the behavior you were explaining after trying some things in a project where I'm tracking an open hand. You're of course right that the thumb up/down doesn't...
-
Do you think it has to do with what object your tracker object is parented to? i.e. do you see the same behavior if you check world rotation instead of local rotation? Since an image will orient to...
-
Hi and thanks very much for the response. Yes dynamic text shows the correct localized date / time, but I'm accessing date and time from javascript (as described in LocalizationSystem in the api) ...
-
Hi Kavin - I saw this article in "commonly requested features" - it seems like it's currently not possible: https://support.lensstudio.snapchat.com/hc/en-us/articles/360031044692-Can-I-dynamically-...
-
strings can be converted to all caps by using: toUpperCase() for example, if you had a script containing a string called myString, and you typed whatever you want into myString in the inspector pan...
-
If you put a Touch component on a scene object, with a reference to a mesh visual to tap on, then add an Audio object to the scene with your audio file referenced in the inspector, you could do som...