<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Major and Minor Grid Line Colors in 3ds Max Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14056142#M95769</link>
    <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18554591"&gt;@ChadForeman74&lt;/a&gt;, I looked into the issue and found that one possible workaround is to add a custom grid system on top of the default grid. However, please note that this suggestion is based on my research, and the script may contain bugs or require adjustments before it works properly in your environment.&lt;/P&gt;
&lt;P&gt;Also, please be aware that we cannot take responsibility for any issues the script may cause. I recommend backing up your projects or testing the script in a safe environment before using it in production.&lt;/P&gt;
&lt;P&gt;Here is the example:&lt;/P&gt;
&lt;P&gt;If we run this in the script editor in 3ds Max:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;global CustomGridOverlay

try(unRegisterRedrawViewsCallback CustomGridOverlay.drawCallback)catch()

struct CustomGridStruct
(
    enabled = true,
    gridSize = 1000.0,          -- visual half-size of grid
    spacing = 10.0,             -- synced from Max
    majorEvery = 10,            -- synced from Max

    minorColor = (color 90 90 90),
    majorColor = (color 140 140 140),
    xAxisColor = (color 220 80 80),
    yAxisColor = (color 80 220 80),

    fn syncFromMaxGrid =
    (
        spacing = getGridSpacing()
        majorEvery = getGridMajorLines()
        if majorEvery &amp;lt; 1 do majorEvery = 1
    ),

    fn drawLine p1 p2 c =
    (
        gw.setColor #line c
        gw.polyline #(p1, p2) false
    ),

    fn drawGrid =
    (
        if not enabled do return false

        syncFromMaxGrid()

        gw.setTransform (matrix3 1)

        local maxLines = gridSize / spacing
        if maxLines &amp;lt; 1 then return false

        for i = -maxLines to maxLines do
        (
            local pos = i * spacing
            local isMajor = (mod (abs i) majorEvery) == 0

            local lineColorX = if isMajor then majorColor else minorColor
            local lineColorY = if isMajor then majorColor else minorColor

            -- X axis horizontal line (Y=0)
            if i == 0 then
                lineColorX = yAxisColor

            -- Y axis vertical line (X=0)
            if i == 0 then
                lineColorY = xAxisColor

            -- horizontal line
            drawLine [-gridSize, pos, 0] [gridSize, pos, 0] lineColorX

            -- vertical line
            drawLine [pos, -gridSize, 0] [pos, gridSize, 0] lineColorY
        )

        gw.enlargeUpdateRect #whole
        gw.updateScreen()
        true
    ),

    fn drawCallback =
    (
        try
        (
            CustomGridOverlay.drawGrid()
        )
        catch()
    ),

    fn start =
    (
        unRegisterRedrawViewsCallback drawCallback
        registerRedrawViewsCallback drawCallback
        completeRedraw()
    ),

    fn stop =
    (
        unRegisterRedrawViewsCallback drawCallback
        completeRedraw()
    )
)

CustomGridOverlay = CustomGridStruct()
CustomGridOverlay.start()

rollout CustomGridUI "Custom Grid Overlay"
(
    checkbox chkEnabled "Enable custom grid" checked:true
    spinner spnSize "Grid half-size: " range:[100,100000,1000] type:#float
    colorpicker cpMinor "Minor"
    colorpicker cpMajor "Major"
    colorpicker cpX "X Axis"
    colorpicker cpY "Y Axis"
    button btnSync "Sync from Max Grid"
    button btnRedraw "Redraw"

    on CustomGridUI open do
    (
        spnSize.value = CustomGridOverlay.gridSize
        cpMinor.color = CustomGridOverlay.minorColor
        cpMajor.color = CustomGridOverlay.majorColor
        cpX.color = CustomGridOverlay.xAxisColor
        cpY.color = CustomGridOverlay.yAxisColor
    )

    on chkEnabled changed val do
    (
        CustomGridOverlay.enabled = val
        completeRedraw()
    )

    on spnSize changed val do
    (
        CustomGridOverlay.gridSize = val
        completeRedraw()
    )

    on cpMinor changed val do
    (
        CustomGridOverlay.minorColor = val
        completeRedraw()
    )

    on cpMajor changed val do
    (
        CustomGridOverlay.majorColor = val
        completeRedraw()
    )

    on cpX changed val do
    (
        CustomGridOverlay.xAxisColor = val
        completeRedraw()
    )

    on cpY changed val do
    (
        CustomGridOverlay.yAxisColor = val
        completeRedraw()
    )

    on btnSync pressed do
    (
        CustomGridOverlay.syncFromMaxGrid()
        format "Spacing: %, Major Every: %\n" CustomGridOverlay.spacing CustomGridOverlay.majorEvery
        completeRedraw()
    )

    on btnRedraw pressed do
    (
        completeRedraw()
    )
)

createDialog CustomGridUI width:220&lt;/LI-CODE&gt;
&lt;P&gt;This will give you a customizable grid system, screenshot you can find here:&lt;/P&gt;
&lt;DIV id="tinyMceEditor_fb461ac7364f8haifeng_yuSEVKN_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="custom grid system example.png" style="width: 783px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1626288iBF24B19F5F6F6DE9/image-dimensions/783x447?v=v2" width="783" height="447" role="button" title="custom grid system example.png" alt="custom grid system example.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Please make sure the default grid system is set correctly before applying the script. The script will capture the data from the default grid system and create a new grid system on top of it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's too complicated, we could also try using Measure Distance tool instead. It's located in Tools &amp;gt; Measure Distance..&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Mar 2026 19:31:03 GMT</pubDate>
    <dc:creator>haifeng_yuSEVKN</dc:creator>
    <dc:date>2026-03-16T19:31:03Z</dc:date>
    <item>
      <title>Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/13998960#M95518</link>
      <description>&lt;P&gt;Is it true Max offers only ONE color for grid lines? Nowhere have I found the option to have separate colors for major and minor grid lines. I can't tell the difference between them with the same color! This seems like it would be an easy fix to an important issue.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-01-31 121251.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1614985i093FC4054071B67E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-01-31 121251.png" alt="Screenshot 2026-01-31 121251.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Sat, 31 Jan 2026 17:14:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/13998960#M95518</guid>
      <dc:creator>ChadForeman74</dc:creator>
      <dc:date>2026-01-31T17:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/13999328#M95520</link>
      <description>&lt;P&gt;Yes, its true ... differentiation between major/minor only happens due to thickness&lt;/P&gt;
&lt;P&gt;world axis gridlines are the thickest, than major gridlines somewhat heavier than the standard lines&lt;/P&gt;
&lt;P&gt;BTW: major gridline intervall can be tweaked in GRid And Snap Settings-&amp;gt;Home Grid&lt;/P&gt;</description>
      <pubDate>Sun, 01 Feb 2026 07:17:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/13999328#M95520</guid>
      <dc:creator>spacefrog_</dc:creator>
      <dc:date>2026-02-01T07:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/13999787#M95524</link>
      <description>&lt;P&gt;Thank you for responding to my message, frog. Here's a snippet of what I have. As you can see I have grid spacing set to every inch with a major line every 12. That way I can visually see where one foot measurement lies because the major Line should look different from the "standard" grid line. But as you can see in the snippet, all I have is one big grid and the assumption that those are 1" x 1" grids. There's got to be a way to change that. If you were in metric you might have a grid that is every cm and then a major gridline every 10 or 100 or whatever. If the differentiation is because of thickness, why isn't the 1 foot line thicker?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-02-01 132421.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1615121i94393BD1B1E21E71/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2026-02-01 132421.png" alt="Screenshot 2026-02-01 132421.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Feb 2026 18:29:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/13999787#M95524</guid>
      <dc:creator>ChadForeman74</dc:creator>
      <dc:date>2026-02-01T18:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14051279#M95742</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18554591"&gt;@ChadForeman74&lt;/a&gt;, thank you very much for your post. I understand that you are experiencing an issue when customizing the grid system in 3ds Max. I looked into the issue and would like to confirm: if you zoom further out in the viewport, are you able to see the major grid line every 12 grid units? Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 18:54:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14051279#M95742</guid>
      <dc:creator>haifeng_yuSEVKN</dc:creator>
      <dc:date>2026-03-11T18:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14055663#M95762</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18554591"&gt;@ChadForeman74&lt;/a&gt;&lt;/SPAN&gt;,&lt;BR /&gt;&lt;BR /&gt;I wanted to check in and see if you still needed assistance, or if you found a solution to your question already? Let us know if you need further assistance by providing an update or if you have found a solution, please share it with the community so other members who may have the same question could learn from your experience.&lt;BR /&gt;&lt;BR /&gt;All the best,&lt;BR /&gt;&lt;BR /&gt;Lauri | Community Manager&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 11:58:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14055663#M95762</guid>
      <dc:creator>lauri_barnhart</dc:creator>
      <dc:date>2026-03-16T11:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14056142#M95769</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18554591"&gt;@ChadForeman74&lt;/a&gt;, I looked into the issue and found that one possible workaround is to add a custom grid system on top of the default grid. However, please note that this suggestion is based on my research, and the script may contain bugs or require adjustments before it works properly in your environment.&lt;/P&gt;
&lt;P&gt;Also, please be aware that we cannot take responsibility for any issues the script may cause. I recommend backing up your projects or testing the script in a safe environment before using it in production.&lt;/P&gt;
&lt;P&gt;Here is the example:&lt;/P&gt;
&lt;P&gt;If we run this in the script editor in 3ds Max:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;global CustomGridOverlay

try(unRegisterRedrawViewsCallback CustomGridOverlay.drawCallback)catch()

struct CustomGridStruct
(
    enabled = true,
    gridSize = 1000.0,          -- visual half-size of grid
    spacing = 10.0,             -- synced from Max
    majorEvery = 10,            -- synced from Max

    minorColor = (color 90 90 90),
    majorColor = (color 140 140 140),
    xAxisColor = (color 220 80 80),
    yAxisColor = (color 80 220 80),

    fn syncFromMaxGrid =
    (
        spacing = getGridSpacing()
        majorEvery = getGridMajorLines()
        if majorEvery &amp;lt; 1 do majorEvery = 1
    ),

    fn drawLine p1 p2 c =
    (
        gw.setColor #line c
        gw.polyline #(p1, p2) false
    ),

    fn drawGrid =
    (
        if not enabled do return false

        syncFromMaxGrid()

        gw.setTransform (matrix3 1)

        local maxLines = gridSize / spacing
        if maxLines &amp;lt; 1 then return false

        for i = -maxLines to maxLines do
        (
            local pos = i * spacing
            local isMajor = (mod (abs i) majorEvery) == 0

            local lineColorX = if isMajor then majorColor else minorColor
            local lineColorY = if isMajor then majorColor else minorColor

            -- X axis horizontal line (Y=0)
            if i == 0 then
                lineColorX = yAxisColor

            -- Y axis vertical line (X=0)
            if i == 0 then
                lineColorY = xAxisColor

            -- horizontal line
            drawLine [-gridSize, pos, 0] [gridSize, pos, 0] lineColorX

            -- vertical line
            drawLine [pos, -gridSize, 0] [pos, gridSize, 0] lineColorY
        )

        gw.enlargeUpdateRect #whole
        gw.updateScreen()
        true
    ),

    fn drawCallback =
    (
        try
        (
            CustomGridOverlay.drawGrid()
        )
        catch()
    ),

    fn start =
    (
        unRegisterRedrawViewsCallback drawCallback
        registerRedrawViewsCallback drawCallback
        completeRedraw()
    ),

    fn stop =
    (
        unRegisterRedrawViewsCallback drawCallback
        completeRedraw()
    )
)

CustomGridOverlay = CustomGridStruct()
CustomGridOverlay.start()

rollout CustomGridUI "Custom Grid Overlay"
(
    checkbox chkEnabled "Enable custom grid" checked:true
    spinner spnSize "Grid half-size: " range:[100,100000,1000] type:#float
    colorpicker cpMinor "Minor"
    colorpicker cpMajor "Major"
    colorpicker cpX "X Axis"
    colorpicker cpY "Y Axis"
    button btnSync "Sync from Max Grid"
    button btnRedraw "Redraw"

    on CustomGridUI open do
    (
        spnSize.value = CustomGridOverlay.gridSize
        cpMinor.color = CustomGridOverlay.minorColor
        cpMajor.color = CustomGridOverlay.majorColor
        cpX.color = CustomGridOverlay.xAxisColor
        cpY.color = CustomGridOverlay.yAxisColor
    )

    on chkEnabled changed val do
    (
        CustomGridOverlay.enabled = val
        completeRedraw()
    )

    on spnSize changed val do
    (
        CustomGridOverlay.gridSize = val
        completeRedraw()
    )

    on cpMinor changed val do
    (
        CustomGridOverlay.minorColor = val
        completeRedraw()
    )

    on cpMajor changed val do
    (
        CustomGridOverlay.majorColor = val
        completeRedraw()
    )

    on cpX changed val do
    (
        CustomGridOverlay.xAxisColor = val
        completeRedraw()
    )

    on cpY changed val do
    (
        CustomGridOverlay.yAxisColor = val
        completeRedraw()
    )

    on btnSync pressed do
    (
        CustomGridOverlay.syncFromMaxGrid()
        format "Spacing: %, Major Every: %\n" CustomGridOverlay.spacing CustomGridOverlay.majorEvery
        completeRedraw()
    )

    on btnRedraw pressed do
    (
        completeRedraw()
    )
)

createDialog CustomGridUI width:220&lt;/LI-CODE&gt;
&lt;P&gt;This will give you a customizable grid system, screenshot you can find here:&lt;/P&gt;
&lt;DIV id="tinyMceEditor_fb461ac7364f8haifeng_yuSEVKN_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="custom grid system example.png" style="width: 783px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1626288iBF24B19F5F6F6DE9/image-dimensions/783x447?v=v2" width="783" height="447" role="button" title="custom grid system example.png" alt="custom grid system example.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Please make sure the default grid system is set correctly before applying the script. The script will capture the data from the default grid system and create a new grid system on top of it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it's too complicated, we could also try using Measure Distance tool instead. It's located in Tools &amp;gt; Measure Distance..&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 19:31:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14056142#M95769</guid>
      <dc:creator>haifeng_yuSEVKN</dc:creator>
      <dc:date>2026-03-16T19:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14058545#M95777</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18554591"&gt;@ChadForeman74&lt;/a&gt;, I just wanted to see if the solution above is helpful, and if you have any questions about it? Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2026 14:30:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14058545#M95777</guid>
      <dc:creator>haifeng_yuSEVKN</dc:creator>
      <dc:date>2026-03-18T14:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14061650#M95785</link>
      <description>&lt;P&gt;Hello, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18554591"&gt;@ChadForeman74&lt;/a&gt;&lt;/SPAN&gt;,&lt;BR /&gt;&lt;BR /&gt;Did the information provided by &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13384615"&gt;@haifeng_yuSEVKN&lt;/a&gt;&lt;/SPAN&gt; help you and answer your question?&lt;BR /&gt;&lt;BR /&gt;If yes, please click on the "Accept Solution" button. This will assist other community users in finding and benefiting from this information.&lt;BR /&gt;&lt;BR /&gt;If not, please do not hesitate to give an update in this thread so all community members receive an update on the progression of your question, and can suggest next steps that may be helpful for you to achieve what you're looking for.&lt;BR /&gt;&lt;BR /&gt;All the best,&lt;BR /&gt;&lt;BR /&gt;Lauri | Community Manager&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 14:35:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14061650#M95785</guid>
      <dc:creator>lauri_barnhart</dc:creator>
      <dc:date>2026-03-20T14:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14094966#M95935</link>
      <description>&lt;P&gt;Haifeng, thank you for your time. That is way too complicated for me. I am a beginner at 3DS Max. Writing (copy/pasting) scripts that might cause bugs is nothing I want to even consider. I am not a programmer.&lt;BR /&gt;&lt;BR /&gt;I have experience in Rhino. In Rhino, it's very easy to distinguish the minor from the major grid lines. The grids are smooth when I zoom in and out. To me this is very helpful in modeling. I can be much faster and more accurate. It seems that 3DS Max is not the only Autodesk product that can't do grid lines very well. AutoCAD is just as bad. The grid is super clunky and when I try to snap to the grid, my mouse moves very slowly. There is a delay.&lt;BR /&gt;&lt;BR /&gt;Grids are very advantageous, in my humble opinion. I don't think it's fair to have grids that don't work and the solution be "learn to model without the grid." They work in Photoshop and Illustrator and are super easy to use. I would think a powerhouse like Autodesk might be able to figure out something this simple.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 13:20:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14094966#M95935</guid>
      <dc:creator>ChadForeman74</dc:creator>
      <dc:date>2026-04-17T13:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14094972#M95936</link>
      <description>&lt;P&gt;Hi Lauri, thanks for checking in.&lt;BR /&gt;&lt;BR /&gt;No it did not. I just posted a response above that explains why it didn't. (Sorry about the delay, I've been out of town for an extended length of time)&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 13:22:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14094972#M95936</guid>
      <dc:creator>ChadForeman74</dc:creator>
      <dc:date>2026-04-17T13:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14095111#M95937</link>
      <description>&lt;DIV&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18554591"&gt;@ChadForeman74&lt;/a&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I'm happy to share that this feature was added in 3ds Max 2027 &lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt; You can now customize major and minor grid line colors independently. Updating to 2027 should solve the issue described here. See &lt;A href="https://help.autodesk.com/view/3DSMAX/2027/ENU/?guid=GUID-5ADB2162-8023-4DE4-9827-74A37D24F933" target="_blank" rel="noopener"&gt;Viewport grid and display improvements&amp;nbsp;&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Let us know if that helps!&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Apr 2026 14:52:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14095111#M95937</guid>
      <dc:creator>ads_decatae</dc:creator>
      <dc:date>2026-04-17T14:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Major and Minor Grid Line Colors</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14140354#M96122</link>
      <description>&lt;P&gt;a to nie mozna dodac tego juz do starszych wersji&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2026 15:01:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/major-and-minor-grid-line-colors/m-p/14140354#M96122</guid>
      <dc:creator>sabek_krysia</dc:creator>
      <dc:date>2026-05-24T15:01:25Z</dc:date>
    </item>
  </channel>
</rss>

