
Max van Leeuwen
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 7
Activity overview
Latest activity by Max van Leeuwen-
Max van Leeuwen commented,
Hi! If anyone is still wondering, a recent update Lens Studio allows reading mesh information (like vertex positions, normals, etc).I made a script that reads that information, and then makes a dup...
-
Max van Leeuwen commented,
Yeah! The new Date() class has many options, you can see all of them on this page!For example, for the current minute of the hour, use var currentMinute = new Date().getMinutes() Which you could th...
-
Max van Leeuwen commented,
Hi! This can be done in different ways, the more complex (but cooler) way would be to make the bowl into an SDF and using the VFX Collision template to do hit tests. Also, if you know how the VFX S...
-
Max van Leeuwen commented,
I'm afraid it works the other way around!This event can be used to bind functions to when the user takes a Snap, for example to show an element as soon as the user starts recording. Capturing Snaps...
-
Max van Leeuwen commented,
It doesn't, the editor isn't 'live' in that sense!Same with creating new objects, renaming, duplicating etc What bugs are you running into?
-
Max van Leeuwen commented,
Hi! First you need the current hour as a number (so for example at 22:54 it would return 22). In Javascript, you can simply call var currentTime = new Date().getHours(); Then, make an array of text...
-
Max van Leeuwen commented,
Hi! If anyone is looking for a way to get 3D models into MeshBuilder, I made this setup that can do that for triangulated .obj files:https://github.com/max-van-leeuwen/SnapLensStudio-OBJBuilder (ma...
-
Max van Leeuwen created a post,
LSQuickScripts - A scripting cheat sheet
Hi! I'm sharing a script with functions that I use a lot, which might save you some time.I will update this every once in a while. There's an example project included! Installation: Just throw the ...