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 recarregar texturas perdidas | Enscape

⚠️ Recarregar texturas no Enscape é um processo mais demorado do que no V-Ray.
Isso porque o Enscape não tem nenhuma função automática que relinka todas as texturas de uma vez — então o processo é manual, textura por textura. Por isso, o ideal é sempre:
▪️Seguir nosso tutorial de uso dos arquivos corretamente
▪️Ou usar o plugin do Club Render Fast, que já baixa e importa tudo certinho.

Se mesmo assim precisar recarregar manualmente, segue o passo a passo:

| PASSO 1 | acesse o editor de materiais do enscape

▪️Clique no ícone do Editor de Materiais do Enscape no SketchUp
▪️ Encontre o material com problema — ele vai estar com a legenda “textura inválida”

| PASSO 2 | recarregue a textura manualmente

▪️Clique no slot da textura que está com erro (diffuse, bump, etc.)
▪️ Clique na pastinha no cantinho do slot
▪️ Vá até a pasta onde estão as texturas do bloco
▪️ Procure pelo mesmo nome de arquivo que está aparecendo acima da “textura inválida”
▪️ Selecione, clique em Abrir e aguarde o carregamento

🎉 Pronto, Faster!

Textura recarregada e material funcionando de novo no Enscape!
Mas se quiser evitar esse retrabalho nas próximas vezes…

Use o plugin do Club Render Fast, você não precisa recarregar nada:
▪️ Ele importa o bloco com todas as texturas no lugar
▪️ Sem ZIP, sem erro, sem perder tempo

👉 Tem tutorial completo aqui na plataforma ensinando como instalar e usar o Plugin.

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'); }); });