CINXE.COM
Procore BIM Plugins - Procore
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Procore BIM Plugins - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=814adc7572602bc7c2a39e3e9899638a_c3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_12140" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=a87985e947b3b92ebec6cfe4689bceb3:site_12140" id="mt-print-css" /> <script type="text/javascript" nonce="e145a0f9211de0250622dbe1526f4170bcea54e1f8f51e550a1a50a84dd4f02f" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=76f77a33377b2f0da26a22ff3a2c3345f92f980b:site_12140"></script><script type="application/json" id="mt-global-settings" nonce="e145a0f9211de0250622dbe1526f4170bcea54e1f8f51e550a1a50a84dd4f02f">{"apiToken":"xhr_2_1732969298_c0ae8d2a5e73de97347b9fa48adf6af83eb5af9517d45293a58190dc138ec66a","pageId":197935,"pageViewId":"4238e10b-0ebc-467c-9d2d-60bb45446191"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js"></script> <!-- Back to Top Button by Tie Dec 14 2023 --> <script defer>/*<![CDATA[*/ window.onscroll = function () { scrollFunction(); }; function scrollFunction() { if (!document.querySelector(".columbia-article-topic-category")) { const backToTopButton = document.querySelector("#back-to-top-button"); const pageText = document.querySelector(".mt-content-container"); if (pageText.getBoundingClientRect().top < -20) { backToTopButton.style.display = "block"; } else { backToTopButton.style.display = "none"; } } } function scrollToTop() { const pageText = document.querySelector(".mt-content-container"); pageText.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest", }); } /*]]>*/</script> <!-- Global Responsive Book Functions Added by Tie Jun 14 2023 --> <script>/*<![CDATA[*/ function displaySection(id){ $(".content-section").hide(); $(id).show(); var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($(window).scrollTop() > $(".content-sop").offset().top) { $([document.documentElement, document.body]).animate({ scrollTop: $(id).offset().top - 84 }, 100); } $('.toc-sop a').removeClass('selected-chapter'); str1=".toc-sop a[onclick*=\\'\\"; str3="\\']"; fin_str=str1.concat(id,str3); $(fin_str).addClass('selected-chapter'); $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); const newURL = new URL(window.location.href); newURL.hash = id; history.pushState({},'',newURL); return false; } function toggleToc(){ var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($menuButton.attr("aria-expanded") === "false") { $menuButton.attr("aria-expanded","true"); $content.attr("data-mobile-visible","false"); $toc.attr("data-mobile-visible","true"); } else { $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); } } /*]]>*/</script> <!-- Put Page ID on Page Settings Added by Tie Apr 14, 2022 --> <script>/*<![CDATA[*/ document.addEventListener("DOMContentLoaded", function (e) { if (document.querySelector("#mt-summary")) { var pageId = document.querySelector("#mt-summary").dataset.pageId; var text = document.createElement("p"); var box = document.querySelector(".mt-collapsible-section"); text.innerText = `Page ID: ${pageId}`; box.appendChild(text); var line = document.querySelector(".elm-meta-data.elm-meta-top"); if (document.querySelector("#mt-summary")) { line.style.display = "block"; box.appendChild(line); } } }); /*]]>*/</script> <!-- Define Deprecated Video Hiding Function Sitewide Added by Tie Marc 30, 2022 --> <script>/*<![CDATA[*/ function hideDeprecatedVideos() { let thisurl = window.location.href; if (thisurl.includes('Media_Library') || thisurl.includes('/tc') || thisurl.includes('/tutorials')) { $('.deprecated-video').show(); }; } $(function () { if ($('.deprecated-video').length) { hideDeprecatedVideos(); } }) /*]]>*/</script> <!-- Define Sorting functions sitewide Added by Tie Marc 11, 2022 --> <script>/*<![CDATA[*/ const language = 'en-us' //Change this two lines during localization const noAlphabetArray = ['zh-cn']; const compareFun = (a, b) => { return new Intl.Collator(language).compare(a.title, b.title); } let sortTerms = (elementType, section, skipFirst) => { let terms = [...section.querySelectorAll(elementType)] let firstElement = section.firstElementChild; let termHeaders = terms.map(e => e.innerText) let termObject = [] termHeaders.forEach((title, index) => { termObject.push({ title }); termObject[index].header = terms[index]; }); termObject.sort(compareFun); section.innerHTML = ''; if (skipFirst) { section.append(firstElement); } termObject.forEach((element) => { section.append(element.header); }); } const sortItems = (definitionSelector, sortItemSelector, skipFirst = false) => { let definitionsSections = [...document.querySelectorAll(definitionSelector)]; definitionsSections.forEach(section => sortTerms(sortItemSelector, section, skipFirst)); } /*]]>*/</script> <!-- Hide content from other regions Added by Tie Marc 7, 2022 --> <script>/*<![CDATA[*/ function getSubdomain() { let host = window.location.host; let subdomain = host.split(".")[0]; return subdomain; } function getLocaleBySubdomain(subdomain) { if (subdomain == "de") { return "de-de"; } if (subdomain == "es") { return "es-419"; } if (subdomain == "fr") { return "fr-fr"; } if (subdomain == "support") { return "en-us"; } return subdomain; } function getAllLocales() { var listedLocales = $(".localization-group") .map(function () { return $(this).data("locale"); }) .get(); return listedLocales; } function hideOtherLocales() { const subdomain = getSubdomain(); const locale = getLocaleBySubdomain(subdomain); let styleElement = document.createElement("style"); styleElement.setAttribute("type", "text/css"); styleElement.innerText = `.localization-group:not([data-locale*='${locale}']) {\ndisplay: none;\n}\n`; styleElement.innerText += '.localization-group[data-locale="else"] {\ndisplay: unset;\n}'; styleElement.innerText += `.localization-group[data-locale*="${locale}"] ~ .localization-group[data-locale="else"] {\ndisplay: none;\n}`; document.head.appendChild(styleElement); } $(function () { hideOtherLocales(); }) /*]]>*/</script> <!-- Collapsible Content. Added by Tie Apr 21, 2020 --> <script>/*<![CDATA[*/ $(window).on('load', function(e){ $('.collapsible').find('.trigger').on('click',function(){ $(this).closest('.collapsible').find('.col_content').slideToggle('350'); if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-down'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-down')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-right'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-down'); } else { $(this).find('.arrowclass').removeClass('fas fa-chevron-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-right'); } }); }); function colex(el) { $(el).closest(".collapsible").find(".col_content").slideToggle("350"); if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-down"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-down")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-right"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-down"); } else { $(el).find(".arrowclass").removeClass("fas fa-chevron-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-right"); } } /*]]>*/</script> <!-- User ID Tracking. Added by Dean Feb 21, 2018 --> <script>/*<![CDATA[*/document.addEventListener("DOMContentLoaded", function() { var json = JSON.parse(document.getElementById('mt-global-settings').textContent) if (!json['userIsAnonymous']) { var dataLayer = window.dataLayer || {}; dataLayer.push({ 'event': 'setUserId', 'userId': json['userId'] }); window.Procore = window.Procore || {}; window.Procore.metrics = window.Procore.metrics || {}; window.Procore.metrics.user = window.Procore.metrics.user || {}; window.Procore.metrics.user.mtid = json['userId']; } }); /*]]>*/</script> <!-- Start Custom Print Style --> <!-- End User ID Tracking --> <!-- Adobe Launch: Added 9/10/2019 by Joshua Bradley --> <script src="//assets.adobedtm.com/launch-EN162b61ce5645478888c92738b130b2f3.min.js" async="async"></script> <!-- End Adobe Launch--> <!-- Google Tag Manager --> <script>/*<![CDATA[*/(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWZQ5W6');/*]]>*/</script> <!-- End Google Tag Manager --> <!-- Start Typography --> <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6912732/682666/css/fonts.css"> <link rel="stylesheet" type="text/css" href="https://mkt-cdn.procore.com/fonts/sctogrotesk/sctogrotesk.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" as="style"> <!-- End Typography --> <!-- Start of FontAwesome --> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <!-- End of FontAwesome --> <!-- Start Service Cloud Header for Ticket Form --> <!-- End Service Cloud Header for Ticket Form --> <!-- Start Service Cloud Deployment Code for Live Agent - SnapIn Widget --> <!-- End Service Cloud Deployment Code for Live Agent - SnapIn Widget --> <!-- Start Service Cloud Deployment Code for Live Agent Widget --> <script type="text/javascript" src="https://c.la4-c2-chi.salesforceliveagent.com/content/g/js/39.0/deployment.js"></script> <script type="text/javascript">/*<![CDATA[*/ liveagent.init('https://d.la4-c2-chi.salesforceliveagent.com/chat', '572340000008OaS', '00D300000000QCK'); /*]]>*/</script> <!-- End Service Cloud Deployment Code for Live Agent Widget --> <!--BEGIN QUALTRICS WEBSITE FEEDBACK SNIPPET--> <script type="text/javascript">/*<![CDATA[*/ (function(){var g=function(e,h,f,g){ this.get=function(a){for(var a=a+"=",c=document.cookie.split(";"),b=0,e=c.length;b<e;b++){for(var d=c[b];" "==d.charAt(0);)d=d.substring(1,d.length);if(0==d.indexOf(a))return d.substring(a.length,d.length)}return null}; this.set=function(a,c){var b="",b=new Date;b.setTime(b.getTime()+6048E5);b="; expires="+b.toGMTString();document.cookie=a+"="+c+b+"; path=/; "}; this.check=function(){var a=this.get(f);if(a)a=a.split(":");else if(100!=e)"v"==h&&(e=Math.random()>=e/100?0:100),a=[h,e,0],this.set(f,a.join(":"));else return!0;var c=a[1];if(100==c)return!0;switch(a[0]){case "v":return!1;case "r":return c=a[2]%Math.floor(100/c),a[2]++,this.set(f,a.join(":")),!c}return!0}; this.go=function(){if(this.check()){var a=document.createElement("script");a.type="text/javascript";a.src=g+ "&t=" + (new Date()).getTime();document.body&&document.body.appendChild(a)}}; this.start=function(){var a=this;window.addEventListener?window.addEventListener("load",function(){a.go()},!1):window.attachEvent&&window.attachEvent("onload",function(){a.go()})}}; try{(new g(100,"r","QSI_S_ZN_6otcNWnvNuWtiwl","https://zn6otcnwnvnuwtiwl-procore.siteintercept.qualtrics.com/WRSiteInterceptEngine/?Q_ZID=ZN_6otcNWnvNuWtiwl")).start()}catch(i){}})(); /*]]>*/</script><div id="ZN_6otcNWnvNuWtiwl"><!--DO NOT REMOVE-CONTENTS PLACED HERE--></div> <!--END WEBSITE FEEDBACK SNIPPET--> <!-- OneTrust Cookies Consent Notice start for procore.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="cbdfc14e-1f05-4d37-82a6-11d3228b4df5"></script> <script type="text/javascript">/*<![CDATA[*/ function OptanonWrapper() { } /*]]>*/</script> <!-- OneTrust Cookies Consent Notice end for procore.com --> <script type="text/javascript" nonce="e145a0f9211de0250622dbe1526f4170bcea54e1f8f51e550a1a50a84dd4f02f">(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create','UA-65721316-4','support.procore.com',{name:'mtTracker',allowLinker:true});ga('mtTracker.require','linker');ga('mtTracker.set', 'anonymizeIp', true);ga('mtTracker.send','pageview');document.addEventListener('mindtouch-web-widget:f1:loaded',function(e){var t=e.data||{},d=t.widget;d&&''!==t.embedId&&document.addEventListener('mindtouch-web-widget:f1:clicked',function(e){var t=(e.data||{}).href;if(t){var n=document.createElement('a');n.setAttribute('href',t),'expert-help.nice.com'===n.hostname&&(e.preventDefault(),ga('linker:decorate',n),d.open(n.href))}})});</script> </head> <body class="columbia-page-main columbia-article-tool-landing-page columbia-breadcrumb-home-products-procore-bim-plugins columbia-live no-touch columbia-lang-en-us columbia-skin-grape"> <div class="grape-messaging"> </div> <div class="grape-header-custom"> <div class="mt-custom-header-div"><div class="mt-custom-header-container"><div class="mt-custom-header-logo"><a target="_self" href="https://support.procore.com/" rel="internal"><img src="https://support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3D76f77a33377b2f0da26a22ff3a2c3345f92f980b:site_12140" /><span id="support-logo">Support</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com?journey=supporttoprocore" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="dropdown dropdown-hover"><a href="#" class="dropdown-toggle mt-icon-earth mt-icon-arrow-down7" role="button"> United States (English)</a><ul class="dropdown-menu" id="lang-dd" style="display: none;"><li><a target="_self" href="https://es.support.procore.com/" rel="external nofollow" class="link-https">América Latina (Español)</a></li><li><a target="_self" href="https://en-au.support.procore.com/" rel="external nofollow" class="link-https">Australia (English)</a></li><li><a target="_self" href="https://pt-br.support.procore.com/" rel="external nofollow" class="link-https">Brasil (Português)</a></li><li><a target="_self" href="https://en-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (English)</a></li><li><a target="_self" href="https://fr-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (Français)</a></li><li><a target="_self" href="https://de.support.procore.com/" rel="external nofollow" class="link-https">Deutschland (Deutsch)</a></li><li><a target="_self" href="https://es-es.support.procore.com/" rel="external nofollow" class="link-https">España (Español)</a></li><li><a target="_self" href="https://fr.support.procore.com/" rel="external nofollow" class="link-https">France (Français)</a></li><li><a target="_self" href="https://en-gb.support.procore.com/" rel="external nofollow" class="link-https">United Kingdom (English)</a></li><li><a target="_self" class="internal" href="https://support.procore.com/" rel="internal">United States (English)</a></li><li><a target="_self" href="https://zh-sg.support.procore.com/" rel="external nofollow" class="link-https">新加坡(简体中文)</a></li></ul></li><li class="mt-custom-header-listitem"><a target="_blank" href="https://support.procore.com/references/contact-support" rel="internal">Contact</a></li><li class="mt-custom-header-listitem-login"><a target="_blank" href="https://app.procore.com?journey=supporttologin" rel="external noopener nofollow" class="link-https">Procore App Login</a></li></ul></div></div><div class="mt-prepend-home mt-custom-home elm-nav" id="header-search"><div class="elm-nav-container"><script type="application/json" id="mt-localizations-help-widget">/*<![CDATA[*/{"Help.Widget.button.text":"Search","Help.Widget.label.text":"Query","Help.Widget.placeholder.text":"How can we help you?"}/*]]>*/</script><div class="mt-inputredirect" data-query-key="q" data-path=""></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(document).ready(function(){ $('.mt-custom-header-right .dropdown').hover(function(){ $(this).children('.dropdown-menu').toggle(); }) });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ /* Adds Training Center Help action to Pro Member Nav. Dean Jan 11, 2018 */ $(document).ready(function(){ $('.elm-header-user-nav.elm-nav .elm-nav-container>ol').prepend('<li><a class="mt-icon-editor-training-link" style="display:inline" target="_blank" href="/tc/Training_Center_Help/">Training Center Help</a></li>'); });/*]]>*/</script> </div> <div class="grape-header grape-wrapper"> <div class="grape-header-container grape-wrapper-container"> <div class="grape-site-logo"> <a class="logo-anonymous" href="/" title="Procore"> <img class="mt-cdn" src="https://a.mtstatic.com/@public/production/site_12140/1681317600-logo.png" alt="Procore" title="Procore"> </a> </div> <div class="grape-site-navigation"> <ul class="mt-site-nav"> <li class="mt-login-sign-in"> <a class="mt-icon-quick-sign-in" href="https://support.procore.com/Special:AuthenticationProviders?returntotitle=products%2Fprocore-bim-plugins" title="Sign in"> Sign in </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://support.procore.com/Special:UserPassword" title="Retrieve lost password"> Forgot password </a> </li> </ul> </div> <div class="grape-site-search"> <div class="mt-quick-search-container"> <form action="/Special:Search"> <input name="path" id="mt-search-path" type="hidden" value="" /> <label class="mt-label" for="mt-site-search-input"> Search </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="How can we help you?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> Search </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://support.procore.com/"> <span class="mt-icon-article-faq mt-icon-article-home"></span> Support Home </a> </li> <li> <a href="https://support.procore.com/products"> <span class="mt-icon-article-category"></span> Products </a> </li> </ul> </div> </div> <div class="grape-content grape-wrapper"> <div class="grape-content-container grape-wrapper-container"> <div id="flash-messages"><div class="dekiFlash"></div></div> <h1 id="title" class="no-edit" style="visibility: visible;"> Procore BIM Plugins </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2024-02-05T15:38:59Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="Table of contents" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">Table of contents</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#User_Guide" rel="internal">User Guide</a><ol><li><a href="#Coordination_Issues" rel="internal">Coordination Issues</a></li><li><a href="#Documents" rel="internal">Documents</a></li><li><a href="#Models" rel="internal">Models</a></li><li><a href="#Locations" rel="internal">Locations</a></li></ol></li><li><a href="#Recent_Changes" rel="internal">Recent Changes</a><ol><li><a href="#7.26.1_(05.2F30.2F2024)" rel="internal">7.26.1 (05/30/2024)</a></li><li><a href="#7.26.0_(04.2F16.2F2024)" rel="internal">7.26.0 (04/16/2024)</a></li><li><a href="#7.25.8_(03.2F29.2F2024)" rel="internal">7.25.8 (03/29/2024)</a></li><li><a href="#7.25.7_(02.2F27.2F2024)" rel="internal">7.25.7 (02/27/2024)</a></li><li><a href="#7.25.6_(02.2F27.2F2024)" rel="internal">7.25.6 (02/27/2024)</a></li><li><a href="#7.25.4_(02.2F16.2F2024)" rel="internal">7.25.4 (02/16/2024)</a></li><li><a href="#7.25.2_(01.2F10.2F2024)" rel="internal">7.25.2 (01/10/2024)</a></li><li><a href="#7.25.1_(01.2F05.2F2024)" rel="internal">7.25.1 (01/05/2024)</a></li><li><a href="#7.25.0_(01.2F02.2F2024)" rel="internal">7.25.0 (01/02/2024)</a></li><li><a href="#7.24.3_(11.2F16.2F2023)" rel="internal">7.24.3 (11/16/2023)</a></li><li><a href="#7.24.2_(10.2F02.2F2023)" rel="internal">7.24.2 (10/02/2023)</a></li><li><a href="#7.24.1_(09.2F13.2F2023)" rel="internal">7.24.1 (09/13/2023)</a></li><li><a href="#7.24_(09.2F06.2F2023)" rel="internal">7.24 (09/06/2023)</a></li><li><a href="#7.23.5_(08.2F23.2F2023)" rel="internal">7.23.5 (08/23/2023)</a></li><li><a href="#7.23.4_(08.2F18.2F2023)" rel="internal">7.23.4 (08/18/2023)</a></li><li><a href="#7.23.3_(08.2F10.2F2023)" rel="internal">7.23.3 (08/10/2023)</a></li><li><a href="#7.23.1_(07.2F27.2F2023)" rel="internal">7.23.1 (07/27/2023)</a></li><li><a href="#7.23.0_(07.2F21.2F2023)" rel="internal">7.23.0 (07/21/2023)</a></li><li><a href="#7.22.0_(06.2F30.2F2023)" rel="internal">7.22.0 (06/30/2023)</a></li><li><a href="#7.21.0_(06.2F16.2F2023)" rel="internal">7.21.0 (06/16/2023)</a></li><li><a href="#7.20.0_(04.2F25.2F2023)" rel="internal">7.20.0 (04/25/2023)</a></li><li><a href="#7.19.3_(01.2F19.2F2023)" rel="internal">7.19.3 (01/19/2023)</a></li></ol></li><li><a href="#Recent_Changes_2" rel="internal">Recent Changes</a><ol><li><a href="#0.13.1_(05.2F30.2F2024)" rel="internal">0.13.1 (05/30/2024)</a></li><li><a href="#0.13.0_(04.2F24.2F2024)" rel="internal">0.13.0 (04/24/2024)</a></li><li><a href="#0.11.2_(04.2F01.2F2024)" rel="internal">0.11.2 (04/01/2024)</a></li><li><a href="#0.11.0_(04.2F01.2F2024)" rel="internal">0.11.0 (04/01/2024)</a></li><li><a href="#0.10.1_(11.2F03.2F2023)" rel="internal">0.10.1 (11/03/2023)</a></li><li><a href="#0.10.0_(11.2F02.2F2023)" rel="internal">0.10.0 (11/02/2023)</a></li><li><a href="#0.9.2_(09.2F08.2F2023)" rel="internal">0.9.2 (09/08/2023)</a></li><li><a href="#0.9.1_(05.2F10.2F2023)" rel="internal">0.9.1 (05/10/2023)</a></li><li><a href="#0.9.0_(05.2F02.2F2023)" rel="internal">0.9.0 (05/02/2023)</a></li><li><a href="#0.8.0_(03.2F09.2F2023)" rel="internal">0.8.0 (03/09/2023)</a></li><li><a href="#0.7.3_(02.2F21.2F2023)" rel="internal">0.7.3 (02/21/2023)</a></li><li><a href="#0.7.2_(01.2F19.2F2023)" rel="internal">0.7.2 (01/19/2023)</a></li></ol></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <div class="responsive-book landing-page"> <div class="button-container"><button aria-controls="toc-sop" aria-expanded="false" id="mobile-menu-toggle" onclick="toggleToc()"><span class="sr-only">Table of Contents</span></button></div> <div class="toc-sop" data-mobile-visible="false"> <ul> <li><a class="selected-chapter" onclick="displaySection('#chapt1'); return false;" href="https://support.procore.com/#" rel="internal">Overview</a></li> <li><a onclick="displaySection('#chapt2'); return false;" href="https://support.procore.com/#" rel="internal">Tutorials</a></li> <li><a onclick="displaySection('#chapt3'); return false;" href="https://support.procore.com/#" rel="internal">FAQ</a></li> <li class="collapsible"><span class="trigger">Release Notes <i class="arrowclass fas fa-chevron-right"> </i></span> <ul class="col_content"> <li><a onclick="displaySection('#chapt4'); return false;" href="https://support.procore.com/#" rel="internal">VDC Plugin</a></li> <li><a onclick="displaySection('#chapt5'); return false;" href="https://support.procore.com/#" rel="internal">Documents Plugin</a></li> </ul> </li> </ul> </div> <div class="content-sop" data-mobile-visible="true"> <div class="content-section" id="chapt1"> <div class="mt-contentreuse-widget" data-page="/products/procore-bim-plugins/overview" data-section="" data-show="false"> <div class="mt-include" id="s209792"><p>Procore offers two plugin applications for Windows computers that allow users to integrate with Procore's tools within BIM applications such as Autodesk®, Navisworks®, and Revit®:</p> <div class="overview-flex-container"> <div class="overview-flex-item"> <p><strong><strong>VDC Plugin for Coordination Issues, Models, and Locations</strong></strong><br /> The Procore BIM product is required to use this plugin.</p> <p><button onclick="window.location='https://procore-vdc.s3.amazonaws.com/ProcoreVdcSetup.exe';" style="border-width: initial; border-style: none; border-color: initial; color: white; background-color: rgb(255, 82, 0); padding: 15px;" target="_blank;">Download Now</button></p> <ul> <li>Create and manage coordination issues directly in Navisworks®.</li> <li>Publish models from Navisworks® for use on Procore web and mobile viewers.</li> <li>Publish grid information from Revit® to use the 2D Views feature on the Procore iOS app.</li> <li>Streamline your project locations setup by exporting Levels and Rooms directly out of Revit® to Locations in Procore.</li> </ul> </div> <div class="overview-flex-item"> <p><strong><strong>Documents Plugin for Autodesk®</strong></strong><br /> Anyone with access to a project's Documents tool can use this plugin.</p> <p><button onclick="window.location='https://bim-plugins-staging.s3.amazonaws.com/Procore+BIM+Plugins+Setup.msi';" style="border-width: initial; border-style: none; border-color: initial; color: white; background-color: rgb(255, 82, 0); padding: 15px;" target="_blank;">Download Now</button></p> <ul> <li>Integrates with the Documents tool in Procore and allows you to interact with project files in Navisworks®, Revit®, and AutoCAD® applications.</li> <li>View & interact with Coordination Issues in Revit®.</li> <li>Export content directly from AutoCAD® or Revit® to the Documents tool in Procore.</li> <li>Open and append Procore documents into Navisworks® and save to the Documents tool.</li> <li>Helps empower team members to keep project files up to date and reduce the risk of rework.</li> </ul> </div> </div> <div class="links-grid-container"> <div class="links-grid-item"> <p><span class="mt-font-size-20"><strong>Popular Tutorials </strong></span><span class="mt-font-size-12"><a onclick="displaySection('#chapt2'); return false;" href="https://support.procore.com/#" rel="internal">(view all)</a></span></p> <div><ol><li><a class="internal" href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/publish-a-model-to-procore" rel="internal">Publish a Model to Procore</a></li><li><a class="internal" href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/download-the-procore-coordination-issues-plugin-for-navisworks" rel="internal">Download the Procore Coordination Issues Plugin for Navisworks®</a></li><li><a class="internal" href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/download-the-procore-plugin-for-the-models-tool" rel="internal">Download the Procore Plugin for the Models Tool</a></li><li><a class="internal" href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/download-the-procore-documents-plugin-for-autodesk" rel="internal">Download the Procore Documents Plugin for Autodesk®</a></li><li><a class="internal" href="https://support.procore.com/products/online/user-guide/project-level/admin/tutorials/import-locations-using-the-procore-plug-in-for-revit" rel="internal">Import Locations Using the Procore Plugin for Revit®</a></li></ol></div> </div> <div class="links-grid-item"> <p><span class="mt-font-size-20"><strong>Top FAQ </strong></span><span class="mt-font-size-12"><a onclick="displaySection('#chapt3'); return false;" href="https://support.procore.com/#" rel="internal">(view all)</a></span></p> <div><ol><li><a class="internal" href="https://support.procore.com/faq/what-is-procore-bim" rel="internal">What is Procore BIM?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" rel="internal">What is a Procore plugin and what is it used for?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-file-types-are-supported-for-the-3d-model-viewer-in-the-documents-tool" rel="internal">What file types are supported for the 3D model viewer in the Documents tool?</a></li><li><a class="internal" href="https://support.procore.com/faq/why-isnt-my-model-showing-when-viewing-models-in-procore" rel="internal">Why isn't my model showing when viewing models in Procore?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-should-i-do-if-my-model-file-is-too-large-to-process-in-the-documents-tool" rel="internal">What should I do if my model file is too large to process in the Documents tool?</a></li></ol></div> </div> <div class="links-grid-item"> <p><span class="mt-font-size-20"><b>Quick Links</b></span></p> <ul> <li><a title="What is a Procore plugin and what is it used for?" href="https://support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" rel="internal">About Procore BIM plugins</a></li> <li><a title="/products/procore-bim-plugins/user-guide/tutorials/download-procore-plugins" href="https://support.procore.com/products/procore-bim-plugins/tutorials/download-procore-plugins" rel="internal">Download Guide</a></li> <li><a data-track-click="Content, Link, Procore Community" href="https://community.procore.com/s/global-search/bim" rel="external noopener nofollow" target="_blank" title="https://community.procore.com/s/global-search/bim">Procore Community BIM Discussions</a></li> </ul> </div> </div> </div> </div> </div> <div class="content-section" id="chapt2"> <div class="mt-contentreuse-widget" data-page="/products/procore-bim-plugins/tutorials" data-section="" data-show="false"> <div class="mt-include" id="s197941"> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Search_Filter_Base_Content_Reuse/Search_Filter_HTML_Elements_Content_Reuse_for_Tutorial_Lists" data-section="" data-show="false"> <div class="mt-include" id="s167213"><div><label class="search-label" for="searchFilter">Search Tutorial Titles</label> <div class="search-bar"><input aria-label="search" id="searchFilter" onkeyup="searchFilter(this)" title="Type in a name" type="text"></input><span id="search-bar__image"><i class="fa fa-search"> </i></span></div> </div> <div id="no-results"> <p>There are no items that match your search query.</p> </div> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Search_Filter_Base_Content_Reuse/Search_Filter_Code_Content_Reuse_for_Tutorial_Lists" data-section="" data-show="false"> <div class="mt-include" id="s173545"><script type="text/javascript">/*<![CDATA[*/ const searchFilterBase = (parentQuery, childQuery, searchcommand, nospace = true) => (element) => { const input = element; let searchTerm = input.value.toUpperCase(); const noResults = document.getElementById("no-results"); noResults.style.display = "none"; let tabControls = null; if (document.querySelector(".device-tab-controls")) { tabControls = document.querySelector(".device-tab-controls"); tabControls.style.display = "flex"; } //console.log(nospace); if (nospace) { searchTerm = searchTerm.replace(/\s+/g, ""); } const contentSection = element.closest(".content-section"); let list = null; let subLists = null; if (contentSection) { list = contentSection.querySelectorAll(`${parentQuery} ${childQuery}`); subLists = [...contentSection.querySelectorAll(`${parentQuery} ul`)]; } else { list = document.querySelectorAll(`${parentQuery} ${childQuery}`); subLists = [...document.querySelectorAll(`${parentQuery} ul`)]; } const items = [...list]; //console.table(items); let txtValue; let numHidden = 0; for (i = 0; i < items.length; i++) { txtValue = eval(`items[${i}]` + searchcommand); //console.log(txtValue); if (txtValue.toUpperCase().indexOf(searchTerm) > -1) { items[i].classList.remove("invisible-link"); } else { items[i].classList.add("invisible-link"); numHidden++; } } subLists.forEach((list) => { list.classList.remove("invisible-list"); const childLinks = [...list.querySelectorAll("li")]; if (childLinks.every((link) => isInvisible(link))) { list.classList.add("invisible-list"); } }); if (numHidden == items.length) { noResults.style.display = "flex"; if (tabControls) { tabControls.style.display = "none"; } } }; function isInvisible(element) { return element.classList.contains("invisible-link"); } /*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ const searchFilter = searchFilterBase( ".widget-tagged-articles", "li", ".innerText", false );/*]]>*/</script> </div> </div> </div> </div> <div mt-section-origin="products/procore-bim-plugins/tutorials" class="mt-section" id="section_1"><span id="User_Guide"></span><h4 style="display: none;" id="User_Guide-197941">User Guide</h4> <table class="mt-responsive-table widget-tagged-articles"> <tbody> <tr> <td class="mt-noheading"> <div mt-section-origin="products/procore-bim-plugins/tutorials" class="mt-section"><span id="Coordination_Issues"></span><h6 id="Coordination_Issues-197941">Coordination Issues</h6> <p><em>See <a target="_blank" title="Coordination Issues" href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues" rel="internal">Coordination Issues</a> for actions in Procore's web application. </em></p> <ul> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/add-or-manage-comments-on-a-coordination-issue" rel="internal">Add or Manage Comments on a Coordination Issue</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/associate-a-model-with-a-procore-project" rel="internal">Associate a Model with a Procore Project</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/close-a-coordination-issue" rel="internal">Close a Coordination Issue</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/create-a-coordination-issue" rel="internal">Create a Coordination Issue</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/delete-a-coordination-issue" rel="internal">Delete a Coordination Issue</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/download-the-procore-coordination-issues-plugin-for-navisworks" rel="internal">Download the Procore Coordination Issues Plugin for Navisworks®</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/download-the-procore-documents-plugin-for-autodesk" rel="internal">Download the Procore Documents Plugin for Autodesk®</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/edit-a-coordination-issue" rel="internal">Edit a Coordination Issue</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/elevate-a-coordination-issue-to-an-rfi" rel="internal">Elevate a Coordination Issue to an RFI</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/getting-started-guide-documents-plugin-for-autodesk" rel="internal">Getting Started Guide: Documents Plugin for Autodesk®</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/getting-started-procore-plugin-for-coordination-issues" rel="internal">Getting Started Guide: Procore Plugin for Coordination Issues</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/import-viewpoints-to-the-coordination-issues-tool" rel="internal">Import Viewpoints to the Coordination Issues Tool</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/mark-a-coordination-issue-as-complete" rel="internal">Mark a Coordination Issue as Complete</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/mention-users-in-a-coordination-issue-comment" rel="internal">Mention Users in a Coordination Issue Comment</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/move-a-coordination-issue-to-an-observation" rel="internal">Move a Coordination Issue to an Observation</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/reassign-a-coordination-issue" rel="internal">Reassign a Coordination Issue</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/reassociate-a-model-with-a-procore-project" rel="internal">Reassociate a Model with a Procore Project</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/reopen-a-coordination-issue" rel="internal">Reopen a Coordination Issue</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/save-nwd-with-all-coordination-issues-as-viewpoints" rel="internal">Save NWD with all Coordination Issues as Viewpoints</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/search-for-and-filter-coordination-issues" rel="internal">Search for and Filter Coordination Issues</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/view-coordination-issues" rel="internal">View Coordination Issues</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/view-the-activity-feed-of-a-coordination-issue" rel="internal">View the Activity Feed of a Coordination Issue</a></li> </ul> </div></td> <td class="mt-noheading"> <div mt-section-origin="products/procore-bim-plugins/tutorials" class="mt-section"><span id="Documents"></span><h6 id="Documents-197941">Documents</h6> <p><em>See <a target="_blank" title="Documents" href="https://support.procore.com/products/online/user-guide/project-level/documents" rel="internal">Documents</a> for actions in Procore's web application. </em></p> <ul> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/download-the-procore-documents-plugin-for-autodesk" rel="internal">Download the Procore Documents Plugin for Autodesk®</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/coordination-issues/tutorials/getting-started-guide-documents-plugin-for-autodesk" rel="internal">Getting Started Guide: Documents Plugin for Autodesk®</a></li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/tutorials" class="mt-section"><span id="Models"></span><h6 id="Models-197941">Models</h6> <p><em>See <a target="_blank" title="Models" href="https://support.procore.com/products/online/user-guide/project-level/models" rel="internal">Models</a> for actions in Procore's web application. </em></p> <ul> <li><a href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/associate-a-model-with-a-procore-project" rel="internal">Associate a Model with a Procore Project</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/download-the-procore-plugin-for-the-models-tool" rel="internal">Download the Procore Plugin for the Models Tool</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/edit-information-for-a-model" rel="internal">Edit Information for a Model</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/getting-started-guide-2d-views-in-the-models-tool" rel="internal">Getting Started Guide: 2D Views in the Models Tool</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/publish-a-model-to-procore" rel="internal">Publish a Model to Procore</a></li> <li><a href="https://support.procore.com/products/online/user-guide/project-level/models/tutorials/reassociate-a-model-with-a-project-for-the-models-tool" rel="internal">Reassociate a Model with a Project for the Models Tool</a></li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/tutorials" class="mt-section"><span id="Locations"></span><h6 id="Locations-197941">Locations</h6> <p><em>See <a target="_blank" title="Admin" href="https://support.procore.com/products/online/user-guide/project-level/admin" rel="internal">Admin</a> for actions in Procore's web application. </em></p> <ul> <li><a title="Import Locations Using the Procore Plugin for Revit®" href="https://support.procore.com/products/online/user-guide/project-level/admin/tutorials/import-locations-using-the-procore-plug-in-for-revit" rel="internal">Import Locations Using the Procore Plugin for Revit®</a></li> </ul> </div></td> </tr> </tbody> </table> </div></div> </div> </div> <div class="content-section" id="chapt3"> <div class="mt-contentreuse-widget" data-page="/products/procore-bim-plugins/faq" data-section="" data-show="false"> <div class="mt-include" id="s197943"><div> <div class="widget-tagged-articles"><ul><li><a class="internal" href="https://support.procore.com/faq/why-would-the-file-size-of-a-model-increase-in-procore" rel="internal">Why would the file size of a model increase in Procore?</a></li><li><a class="internal" href="https://support.procore.com/faq/why-isnt-my-model-showing-when-viewing-models-in-procore" rel="internal">Why isn't my model showing when viewing models in Procore?</a></li><li><a class="internal" href="https://support.procore.com/faq/why-cant-i-use-the-cloud-redline-tool-in-navisworks" rel="internal">Why can’t I use the cloud redline tool in Navisworks®?</a></li><li><a class="internal" href="https://support.procore.com/faq/why-are-viewpoints-being-created-after-i-use-the-markup-tools" rel="internal">Why are viewpoints being created after I use the markup tools?</a></li><li><a class="internal" href="https://support.procore.com/faq/why-am-i-not-seeing-my-issues-after-i-associate-the-file-to-my-project" rel="internal">Why am I not seeing my issues after I associate the file to my project?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-should-i-do-if-my-model-file-is-too-large-to-process-in-the-documents-tool" rel="internal">What should I do if my model file is too large to process in the Documents tool?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-should-i-do-if-a-model-is-too-large-to-view-in-procores-web-application" rel="internal">What should I do if a model is too large to view in Procore's web application?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-is-the-procore-plugin-and-what-is-it-used-for" rel="internal">What is a Procore plugin and what is it used for?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-is-procore-bim" rel="internal">What is Procore BIM?</a></li><li><a class="internal" href="https://support.procore.com/faq/what-file-types-are-supported-for-the-3d-model-viewer-in-the-documents-tool" rel="internal">What file types are supported for the 3D model viewer in the Documents tool?</a></li></ul></div> </div> </div> </div> </div> <div class="content-section" id="chapt4"> <div class="mt-contentreuse-widget" data-page="products/procore-bim-plugins/procore-vdc-plugin-release-notes" data-section="" data-show="false"> <div class="mt-include" id="s197939"><p>Below are the notable changes to the Procore VDC Plugin.</p> <div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_1"><span id="Recent_Changes"></span><h2 id="Recent_Changes-197939">Recent Changes</h2> <div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_2"><span id="7.26.1_(05.2F30.2F2024)"></span><h4 id="7.26.1_(05.2F30.2F2024)-197939">7.26.1 (05/30/2024)</h4> <ul> <li>Fix for viewpoints occasionally not loading when publishing Models.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_3"><span id="7.26.0_(04.2F16.2F2024)"></span><h4 id="7.26.0_(04.2F16.2F2024)-197939">7.26.0 (04/16/2024)</h4> <ul> <li>Navisworks 2025 support.</li> <li>New option to force refresh Locations in settings. </li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_4"><span id="7.25.8_(03.2F29.2F2024)"></span><h4 id="7.25.8_(03.2F29.2F2024)-197939">7.25.8 (03/29/2024)</h4> <ul> <li>Fix: Navisworks crash while publishing a model opened from ACC.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_5"><span id="7.25.7_(02.2F27.2F2024)"></span><h4 id="7.25.7_(02.2F27.2F2024)-197939">7.25.7 (02/27/2024)</h4> <ul> <li>Fix: Reverted logging changes due to reported crashes.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_6"><span id="7.25.6_(02.2F27.2F2024)"></span><h4 id="7.25.6_(02.2F27.2F2024)-197939">7.25.6 (02/27/2024)</h4> <ul> <li>Fix: Authentication changes for Procore caused login issues for users.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_7"><span id="7.25.4_(02.2F16.2F2024)"></span><h4 id="7.25.4_(02.2F16.2F2024)-197939">7.25.4 (02/16/2024)</h4> <ul> <li>Fix: Selecting items would not display the correct elevation when creating levels. </li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_8"><span id="7.25.2_(01.2F10.2F2024)"></span><h4 id="7.25.2_(01.2F10.2F2024)-197939">7.25.2 (01/10/2024)</h4> <ul> <li>Fix: Improvements to file upload process.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_9"><span id="7.25.1_(01.2F05.2F2024)"></span><h4 id="7.25.1_(01.2F05.2F2024)-197939">7.25.1 (01/05/2024)</h4> <ul> <li>Fix: Activity snapshots failing to upload.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_10"><span id="7.25.0_(01.2F02.2F2024)"></span><h4 id="7.25.0_(01.2F02.2F2024)-197939">7.25.0 (01/02/2024)</h4> <ul> <li>Now uses segmented upload for files larger than 5MB</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_11"><span id="7.24.3_(11.2F16.2F2023)"></span><h4 id="7.24.3_(11.2F16.2F2023)-197939">7.24.3 (11/16/2023)</h4> <ul> <li>Feature: New Learn More button on the section box warning banner.</li> <li>Fix: Navisworks crash when viewing sheets.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_12"><span id="7.24.2_(10.2F02.2F2023)"></span><h4 id="7.24.2_(10.2F02.2F2023)-197939">7.24.2 (10/02/2023)</h4> <ul> <li>No user facing changes</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_13"><span id="7.24.1_(09.2F13.2F2023)"></span><h4 id="7.24.1_(09.2F13.2F2023)-197939">7.24.1 (09/13/2023)</h4> <ul> <li>Fixed a bug where Observation Assignee and Type drop-downs weren't loading</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_14"><span id="7.24_(09.2F06.2F2023)"></span><h4 id="7.24_(09.2F06.2F2023)-197939">7.24 (09/06/2023)</h4> <ul> <li>Feature: Support for Enter and Escape keys on forms</li> <li>Fix: Support projects with more than 10,000 Drawings or Coordination Issues</li> <li>Fix: Error when publishing a model with more than 100 viewpoints</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_15"><span id="7.23.5_(08.2F23.2F2023)"></span><h4 id="7.23.5_(08.2F23.2F2023)-197939">7.23.5 (08/23/2023)</h4> <ul> <li>Fixed a bug where some Level values would not display when selecting model elements.</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_16"><span id="7.23.4_(08.2F18.2F2023)"></span><h4 id="7.23.4_(08.2F18.2F2023)-197939">7.23.4 (08/18/2023)</h4> <ul> <li>Fixed a bug where the Coordination Issues list does not scroll to the correct location</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_17"><span id="7.23.3_(08.2F10.2F2023)"></span><h4 id="7.23.3_(08.2F10.2F2023)-197939">7.23.3 (08/10/2023)</h4> <ul> <li>Fixed a bug where some Sherlock issues did not properly navigate to the Clash Detective</li> <li>Fixed a bug with incorrect units when Adding a Level by selection</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_18"><span id="7.23.1_(07.2F27.2F2023)"></span><h4 id="7.23.1_(07.2F27.2F2023)-197939">7.23.1 (07/27/2023)</h4> <ul> <li>Fixed a bug with section box when publishing a new revision of a model</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_19"><span id="7.23.0_(07.2F21.2F2023)"></span><h4 id="7.23.0_(07.2F21.2F2023)-197939">7.23.0 (07/21/2023)</h4> <ul> <li>Units for Settings and Add Level panels utilize Navisworks Display Unit</li> <li>Increase timeouts</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_20"><span id="7.22.0_(06.2F30.2F2023)"></span><h4 id="7.22.0_(06.2F30.2F2023)-197939">7.22.0 (06/30/2023)</h4> <ul> <li>Fix for timeout when uploading large models</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_21"><span id="7.21.0_(06.2F16.2F2023)"></span><h4 id="7.21.0_(06.2F16.2F2023)-197939">7.21.0 (06/16/2023)</h4> <ul> <li>5GB limit when publishing models</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_22"><span id="7.20.0_(04.2F25.2F2023)"></span><h4 id="7.20.0_(04.2F25.2F2023)-197939">7.20.0 (04/25/2023)</h4> <ul> <li>Autodesk 2024 Support</li> <li>Flypaper Sherlock Integration</li> <li>Priority and Trade fields now sticky</li> <li>Fix: Suppress Script Error on Login</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-vdc-plugin-release-notes" class="mt-section" id="section_23"><span id="7.19.3_(01.2F19.2F2023)"></span><h4 id="7.19.3_(01.2F19.2F2023)-197939">7.19.3 (01/19/2023)</h4> <ul> <li>Save NWD viewpoint issue</li> <li>Section box warning banner should go away when section box is present</li> </ul> </div></div></div> </div> </div> <div class="content-section" id="chapt5"> <div class="mt-contentreuse-widget" data-page="products/procore-bim-plugins/procore-documents-plugin-release-notes" data-section="" data-show="false"> <div class="mt-include" id="s197955"><p>Below are the notable changes to the Procore Documents Plugin for Autodesk®.</p> <div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_1"><span id="Recent_Changes_2"></span><h2 id="Recent_Changes-197955">Recent Changes</h2> <ul> </ul> <div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_2"><span id="0.13.1_(05.2F30.2F2024)"></span><h4 id="0.13.1_(05.2F30.2F2024)-197955">0.13.1 (05/30/2024)</h4> <ul> <li>Fixed a crash with some instances of Revit® 2022</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_3"><span id="0.13.0_(04.2F24.2F2024)"></span><h4 id="0.13.0_(04.2F24.2F2024)-197955">0.13.0 (04/24/2024)</h4> <ul> <li>Autodesk 2025 support</li> <li>Fix: Page refresh looping</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_4"><span id="0.11.2_(04.2F01.2F2024)"></span><h4 id="0.11.2_(04.2F01.2F2024)-197955">0.11.2 (04/01/2024)</h4> <ul> <li> <p>Fix: Incorrect analytics being sent</p> </li> <li>Fix: Failure to download due to invalid certificate</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_5"><span id="0.11.0_(04.2F01.2F2024)"></span><h4 id="0.11.0_(04.2F01.2F2024)-197955">0.11.0 (04/01/2024)</h4> <ul> <li>Feature: Quality of life improvements to auto-fill file type fields based on last save/export</li> <li>Feature: Large file upload (>5G <5TB)</li> <li>Fix: Authorization between multiple instances </li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_6"><span id="0.10.1_(11.2F03.2F2023)"></span><h4 id="0.10.1_(11.2F03.2F2023)-197955">0.10.1 (11/03/2023)</h4> <ul> <li>Fix: Potential crash in Revit</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_7"><span id="0.10.0_(11.2F02.2F2023)"></span><h4 id="0.10.0_(11.2F02.2F2023)-197955">0.10.0 (11/02/2023)</h4> <ul> <li>Feature: Japanese language support</li> <li>Feature: Ability to resize folder tree</li> <li>Fix: Better support for projects with large folder counts</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_8"><span id="0.9.2_(09.2F08.2F2023)"></span><h4 id="0.9.2_(09.2F08.2F2023)-197955">0.9.2 (09/08/2023)</h4> <ul> <li>Feature: Support Windows Single Sign-On (SSO)</li> <li>Feature: Added Divide File Into Levels config when exporting NWC files from Revit</li> <li>Fix: Navisworks crash when resolving missing files</li> <li>Fix: Support projects with more than 10,000 Documents folders</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_9"><span id="0.9.1_(05.2F10.2F2023)"></span><h4 id="0.9.1_(05.2F10.2F2023)-197955">0.9.1 (05/10/2023)</h4> <ul> <li>Append DWF/DWFx in Navisworks</li> <li>Improved Refresh in Navisworks</li> <li>Fix: Export DWF/DWFx/PDF in AutoCAD</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_10"><span id="0.9.0_(05.2F02.2F2023)"></span><h4 id="0.9.0_(05.2F02.2F2023)-197955">0.9.0 (05/02/2023)</h4> <ul> <li>Autodesk 2024 Support</li> <li>Revit NWC Export Settings</li> <li>Export Error Messaging</li> <li>Fixes for Open/Append/Save Crash in Navisworks</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_11"><span id="0.8.0_(03.2F09.2F2023)"></span><h4 id="0.8.0_(03.2F09.2F2023)-197955">0.8.0 (03/09/2023)</h4> <ul> <li>Fix for update flow from File Info panel</li> <li>Improved analytics for Exports</li> <li>Fixes for authentication / white screen issues</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_12"><span id="0.7.3_(02.2F21.2F2023)"></span><h4 id="0.7.3_(02.2F21.2F2023)-197955">0.7.3 (02/21/2023)</h4> <ul> <li>Improved Revit NWC Export Settings</li> <li>Prompt for login on Save</li> <li>Authorization improvements</li> </ul> </div><div mt-section-origin="products/procore-bim-plugins/procore-documents-plugin-release-notes" class="mt-section" id="section_13"><span id="0.7.2_(01.2F19.2F2023)"></span><h4 id="0.7.2_(01.2F19.2F2023)-197955">0.7.2 (01/19/2023)</h4> <ul> <li>Updated IFC Export Settings</li> </ul> </div></div></div> </div> </div> </div> <script type="text/javascript">/*<![CDATA[*/ if(window.location.hash) { var initialChapt = window.location.hash; displaySection (initialChapt); }/*]]>*/</script><div class="mt-contentreuse-widget" data-page="/Media_Library/Generic_Media/CSS_and_Javascript_Reuse/Start_Collapsed_Book_CSS" data-section="" data-show="false"> <div class="mt-include" id="s209719"> <p> </p> </div> </div></div></div> </div> </div> <div class="mt-content-footer"></div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="Jump back to top of this article">Back to top</a></li> <li class="grape-article-pagination"><ul class="mt-article-pagination"> <li class="mt-pagination-previous"> <a class="mt-icon-previous-article" href="https://support.procore.com/products/procore-api/videos" title="Procore API - Videos"><span>Procore API - Videos</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://support.procore.com/products/procore-bim-plugins/faq" title="Procore BIM Plugins - FAQ"><span>Procore BIM Plugins - FAQ</span></a> </li> </ul> </li> </ol> </div> </div> <div class="grape-footer grape-wrapper"> <div class="grape-wrapper-container"> <ol> <li class="grape-footer-copyright">© Copyright 2024 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> Powered by CXone Expert <span class="mt-registered">®</span> </a></li> </ol> </div> </div> <div class="grape-footer-custom"> <div class="mt-custom-footer-container"><div class="mt-custom-footer-left"><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a target="_blank" href="https://www.linkedin.com/company/procore-technologies" rel="external noopener nofollow" class="mt-icon-linkedin2 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.facebook.com/procore.tech" rel="external noopener nofollow" class="mt-icon-facebook5 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.twitter.com/procoretech" rel="external noopener nofollow" class="mt-icon-twitter4 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.instagram.com/procoretech" rel="external noopener nofollow" class="mt-icon-instagram3 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.youtube.com/user/ProcoreVideo" rel="external noopener nofollow" class="mt-icon-youtube link-https"></a></li></ul></div><div class="mt-custom-footer-right"><div class="mt-custom-footer-copyright"><span>© 2024 Procore Technologies, Inc.</span></div><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/privacy" target="_blank" rel="external noopener nofollow" class="link-https">Privacy Notice</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/terms-of-service" target="_blank" rel="external noopener nofollow" class="link-https">Terms of Service</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/" target="_blank" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="mt-custom-footer-link" id="last-item"><a href="https://app.procore.com/mindtouch/auth" target="_blank" rel="external noopener nofollow" class="link-https">Log In</a></li></ul></div></div> <script type="text/javascript">/*<![CDATA[*/ <!-- Change default from Draft to Live in Edit and New screens. Added by Dean May 13, 2020 --> $("a.mt-icon-new-page").click(function () { setTimeout( function () { $("label[for='mt-new-templates-create-live']").click(); }, 6000); });/*]]>*/</script> <p> </p> <style type="text/css">/*<![CDATA[*/ #salesforceLiveChatHelpButtonFooter { position: fixed; bottom: 0; right: 200px; z-index: 100; } #salesforceLiveChatHelpButton { height: 46px; width: 165px; background-color: #232729; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 15px; border-radius: 8px 8px 0px 0px; cursor: pointer; background-image: url(https://procoretechnologies.my.salesforce-sites.com/support/resource/EmbeddedServiceChatIcon); background-repeat: no-repeat; padding-left: 60px; background-size: 25px 25px; background-position: 25px 11px; font-family: "Inter", "Arial", sans-serif; box-shadow: 0 0 12px 0 rgba(0,0,0,0.5); line-height: 0px; } #salesforceLiveChatHelpButton:hover { transition: 0.05s ease-in; background-color: #4E5253; } /*]]>*/</style> <div id="salesforceLiveChatHelpButtonFooter"><input id="salesforceLiveChatHelpButton" onclick="window.open('https://procoretechnologies.my.salesforce-sites.com/support/ProcoreChatSupport', 'Procore Support Chat', 'width=430,height=730')" type="submit" value="Live Chat"></input></div> </div> <script type="text/javascript" data-mindtouch-module="true" src="https://a.mtstatic.com/deki/javascript/out/standalone/ui.widget.helpWidget.js?_=76f77a33377b2f0da26a22ff3a2c3345f92f980b:site_12140"></script><!-- Scroll to Top Button --> <div><button id="back-to-top-button" onclick="scrollToTop()"><i class="fa fa-angle-up">‌‍​</i></button></div> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWZQ5W6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- Start of Procore Service Cloud Live Code Snippet --> <div class="servicecloud"> <img id="liveagent_button_online_57334000000Cakh" data-track-click="Chat, Support, Live Chat" style="display: none; border: 0px none; cursor: pointer" onclick="liveagent.startChat('57334000000Cakh')" src="https://procoretech.secure.force.com/chat/resource/1518732818000/OnlineChat2018" /><img id="liveagent_button_offline_57334000000Cakh" style="display: none; border: 0px none; " src="https://procoretech.secure.force.com/chat/resource/1518732832000/OfflineChat2018" /> <script type="text/javascript">/*<![CDATA[*/ if (!window._laq) { window._laq = []; } window._laq.push(function(){liveagent.showWhenOnline('57334000000Cakh', document.getElementById('liveagent_button_online_57334000000Cakh')); liveagent.showWhenOffline('57334000000Cakh', document.getElementById('liveagent_button_offline_57334000000Cakh')); });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ liveagent.setChatWindowHeight(675); liveagent.setChatWindowWidth(400); /*]]>*/</script> </div> <!-- End of Procore Service Cloud Live Code Snippet --> </body> </html>