TUTORIAIS

👋 Fala, Faster! Antes de baixar seus blocos, você precisa ter nossa pasta padrão no seu computador.Assim tudo carrega certinho no SketchUp, sem erro de textura.

Como usar os materiais configurados | Vray

Quando você baixa um material do Club Render Fast, ele já vem pronto pra usar. Bora ver como aplicar no V-Ray!

| PASSO 1 | baixe e descompacte

▪️ Baixe o arquivo no site (se você for Faster Anual, pode baixar a pasta completa de materiais)
▪️ Descompacte o ZIP.
Você vai ver:
• Arquivo configurado pra V-Ray (VRMAT)
• Arquivo configurado pra Enscape (MATPKG)

Atenção: Não mova as texturas da pasta, para o material permanecer configurado as texturas precisam permanecer do jeito que foi baixado

| PASSO 2 | abra o Asset Editor do V-Ray

▪️No SketchUp, clique pra abrir o Asset Editor (painel do V-Ray).
▪️ Vá na aba lateral de materiais
▪️ Clique no ícone de adicionar nova pasta (ícone de pastinha no canto).
▪️ Selecione a pasta onde você salvou o material baixado.
▪️ O material vai aparecer listado.

| PASSO 3 | aplique no Sketchup e ajuste a escala

▪️Na lista de materiais, clique e arraste o material para a parte de materiais do V-Ray.
▪️ Depois, com a ferramenta balde de tinta, aplique o material na superfície desejada
▪️Na bandeja lateral do Sketchup, vá em Materiais.
▪️ Ajuste a escala/tamanho do material para ficar certinho na superfície.

X
X
Produto adicionado aos favoritos :

SEU RENDER AINDA + FAST

IMPORTE NOSSOS BLOCOS 3D DIRETO NO SKETCHUP

BAIXE NOSSO PLUGIN
if(window.sketchup) { document.querySelector('body').classList.add('has-sketchup'); } const notificationSystem = document.querySelector('.notification-system'); const searchIcon = document.querySelector('.search-icon'); const searchModal = document.querySelector('.search-modal'); const searchModalCloseBTN = document.querySelector('.search-modal-close'); searchIcon.addEventListener('click', function(e) { e.preventDefault(); searchModal.classList.add('active'); }); searchModalCloseBTN.addEventListener('click', function(e) { e.preventDefault(); searchModal.classList.remove('active'); }); var userId = +0; var isSubscriber = +0; // Limite de downloads var downloadsMounthLimit = 150; var downloadsDayLimit = 10; var downloadsMounthLimitFree = 5; var downloadsDayLimitFree = 1; var mySubscription = +0; // 0 = Mensal, 1 Semestral e 2 Anual var downloadsDay = +0; var downloadsMonth = +0; var productsDownloadButton = document.querySelectorAll('.product-download-link'); if (typeof productsDownloadButton !== "undefined") { productsDownloadButton.forEach(function(productDownloadButton) { productDownloadButton.addEventListener('click', function(event) { // Se for assinante, e assinante mensal if (isSubscriber === 1 && mySubscription <= 0) { if (downloadsMonth >= downloadsMounthLimit) { // event.preventDefault(); // showNotification( // "Você já chegou no limite de " + downloadsMounthLimit + " downloads mensal.", 30000 // ); // return; } else { showNotification( "Limite de download: " + downloadsMonth + "/" + downloadsMounthLimit + " mensal", 30000 ); downloadsDay++; downloadsMonth++; // if (downloadsDay >= downloadsDayLimit) { // event.preventDefault(); // showNotification( // "Você já chegou no limite de " + downloadsDayLimit + " downloads diário." // ); // console.log('É assinante e limite diario atingido'); // return; // } else { // showNotification( // "Limite de download: " + downloadsDay + "/" + downloadsDayLimit + " diario" // ); // } const formData = new FormData(); formData.append('user_id', userId); const options = { body: formData, method: 'post', } fetch(`${window.location.origin}/wp-json/api/aumentar_download`, options).then(r => r.json()).then(r => console.log(r)); } } }); }) } let notificationTimer; function showNotification(message, time = 5000) { if (notificationTimer) clearInterval(notificationTimer); notificationSystem.querySelector('.notification-message').innerHTML = message; notificationSystem.classList.add('active'); notificationTimer = setTimeout(() => { notificationSystem.classList.remove('active'); }, time); } // Mudar a imagem pra dar Zoom const productZoomElements = document.querySelectorAll('.product-zoom'); const zoomElement = document.querySelector('.zoom-system'); const zoomCloseElement = document.querySelector('.zoom-system .close'); zoomCloseElement.addEventListener('click', function(e) { e.preventDefault(); zoomElement.classList.remove('active'); }); productZoomElements.forEach(productZoom => { productZoom.addEventListener('click', () => { // Get the closest ancestor element with the class "product-card-image-link" const productCard = productZoom.closest('.product-card'); zoomElement.querySelector('img').src = productCard.querySelector('.product-card-image-link img').src; zoomElement.classList.add('active'); }); });