베이지색 메탈릭 마감 플라스틱




GET UNLIMITED ACCESS

Join Pro

Unlimited downloads, unrestricted access to 1000+ premium 3D rendering assets, updated monthly.


Free Tier

Start here to download our free assets. Upgrade to Pro for unlimited access.

Free

Always Free

  • Curated library of regularly updated free textures.

  • Member-exclusive textures & early asset release access.

  • Member-Only Discounts & Special Event Invitations.

Individual / Freelancer

Best suited for freelancers, serious hobbyists, and individual professionals.

₩45,750/mo

₩549,000 billed annually

  • Unlimited access to the entire premium texture library.

  • Full commercial license for global, royalty-free use.

  • Maximum resolution textures (4K, 8K+).

Small Team

Perfect for small studios, architectural firms, or collaborative design teams.

₩95,250/mo

₩1,143,000 billed annually

  • Everything included in Individual / Freelancer

  • Unlimited premium asset access for up to 5 users.

  • Full commercial license covering entire team usage.

Large Team

Designed for larger studios, agencies, or corporate visualization teams.

₩152,333/mo

₩1,828,000 billed annually

  • Everything included in Small Team Plan

  • Unlimited premium asset access for up to 10 users.

  • Bespoke Asset Curation. We help curate custom collections tailored to your project needs

Free Tier

Start here to download our free assets. Upgrade to Pro for unlimited access.

Free

Always Free

  • Curated library of regularly updated free textures.

  • Member-exclusive textures & early asset release access.

  • Member-Only Discounts & Special Event Invitations.

Individual / Freelancer

Best suited for freelancers, serious hobbyists, and individual professionals.

₩69,000/mo

Billed monthly

  • Unlimited access to the entire premium texture library.

  • Full commercial license for global, royalty-free use.

  • Maximum resolution textures (4K, 8K+).

Small Team

Perfect for small studios, architectural firms, or collaborative design teams.

₩164,000/mo

Billed monthly

  • Everything included in Individual / Freelancer

  • Unlimited premium asset access for up to 5 users.

  • Full commercial license covering entire team usage.

Large Team

Designed for larger studios, agencies, or corporate visualization teams.

₩305,000/mo

Billed monthly

  • Everything included in Small Team Plan

  • Unlimited premium asset access for up to 10 users.

  • Bespoke Asset Curation. We help curate custom collections tailored to your project needs

New Professional Assets Added Monthly
// --- main product main script caller (FINAL, CORRECTED VERSION) --- (function() { // This helper function shows/hides steps. It now expects simple numbers. function showModalStep(prefix, stepNumber) { // Hide all steps first document.querySelectorAll(`[id^="${prefix}-step-"]`).forEach(el => el.style.display = 'none'); // Show the correct step const targetStep = document.getElementById(`${prefix}-step-${stepNumber}`); if (targetStep) { targetStep.style.display = 'block'; } } // This function safely opens a modal. function tryOpenModal(modalOpener, isLocked, callback) { if (typeof window[modalOpener] === 'function') { window[modalOpener](isLocked); if (callback) { callback(); } } else { setTimeout(() => tryOpenModal(modalOpener, isLocked, callback), 50); } } const urlParams = new URLSearchParams(window.location.search); const customerIsLoggedIn = null; // This is a Liquid object, it's null if not logged in. // --- LOGIC FOR THE FREE PRODUCT FLOW (RESTORED & CORRECTED) --- if (urlParams.has('registration_success')) { if (customerIsLoggedIn) { // True success for free flow tryOpenModal('openRegistrationModal', true, function() { showModalStep('modal-step', 2); }); } else { // False positive (existing user/subscriber) for free flow -> redirect to standard register page window.location.href = '/ko-kr/account/register'; } } else if (urlParams.has('address_added')) { // This part is for the free flow's step 3. tryOpenModal('openRegistrationModal', false, function() { showModalStep('modal-step', 3); }); } // --- LOGIC FOR THE PAID PRODUCT FLOW (CORRECTED) --- if (urlParams.has('pro_reg_success')) { if (customerIsLoggedIn) { // TRUE SUCCESS: Open the modal and show Step 2. tryOpenModal('openProSignupModal', true, function() { showModalStep('pro-modal-step', 2); }); } else { // FALSE POSITIVE (existing user/subscriber): Redirect to the standard register page. // Shopify will show the correct error message ("email taken" or "verify your email"). window.location.href = '/ko-kr/account/register'; } } else if (urlParams.has('pro_addr_added')) { // This is correct. After adding an address, open the pricing table. if (typeof window.closeProSignupModal === 'function') { window.closeProSignupModal(); } setTimeout(function() { if (typeof window.openProUpgradeModal === 'function') { window.openProUpgradeModal(); } }, 450); } })();
×