Max van Leeuwen
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 7
Comments
Recent activity by Max van Leeuwen Sort by recent activity-
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...
-
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...
-
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...
-
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...
-
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?
-
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...
-
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...