This has been an interesting project that will hopefully grow into something spectacular.
The client launched their products in the US and used this scene in the launching seminar (and also ever since) to teach the retail staff in Texas about the qualities of the product.
Hi @ville,
I like several things:
The video with transparent background in the middle of space, the glowing furniture in the center of the room, the Chat and data collection buttons (how did you make them?)
Apart
I like the ambience and the industrial look of the scene. Nice
Hi @ville,
Nice project. i like the way you do with transparency video.
I want ask some things:
When i moved the cursor into this object,material was change (something like emissive material…). can you show me how to do it.
You can use the “script” extension from the viewer tab in the Shapespark editor and copy this snippet there. Just change the “NAME-OF-YOUR-MATERIAL” to the name of the material you want to highlight, save and upload.
const viewer = WALK.getViewer();
function handleHoverChanged(material, hoverActive) {
if (hoverActive) {
document.body.style.cursor = ‘pointer’;
} else {
document.body.style.cursor = ‘’;
}
}
Are you referring to the UI buttons in the lower right? Those were done through javascript in the body-end -file of the Shapespark file. The chat script can be found here: Simple chat application