<?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: Assign Display Vertex Colors to Hotkey in 3ds Max Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12740104#M3550</link>
    <description>&lt;P&gt;Strange. I tested it on teapot with no material.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(
	function isValidObject obj = (
		valid = false
		case classOf(obj) of (
			Editable_Poly: (
				if polyop.getMapSupport obj 0 do (
					valid = true
				)
			)
			Editable_mesh: (
				if meshop.getMapSupport obj 0 do (
					valid = true
				)
			)
		)
		valid
	)
	
	for i in selection do (
		obj = i
		if isValidObject obj then (
			obj.vertexColorType = #color
			if obj.showVertexColors then (
				obj.showVertexColors = off
			) else (
				obj.showVertexColors = on
			)
		)
	)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Apr 2024 05:41:16 GMT</pubDate>
    <dc:creator>dmitriy.shpilevoy</dc:creator>
    <dc:date>2024-04-29T05:41:16Z</dc:date>
    <item>
      <title>Assign Display Vertex Colors to Hotkey</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12733685#M3546</link>
      <description>&lt;P&gt;Is there a way to assign the Vertex Colors check box under the display properties panel to a hotkey. I want to toggle the box on and off with a hotkey, or at least drag it into a custom toolbar and then assign that button to a hotkey. Oddly enough the "Vertex Ticks" toggle above that one is found in the Customize User interface window, but not "vertex colors"....&amp;nbsp; (See image attached).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**I'm using 3ds Max 2024**&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 16:07:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12733685#M3546</guid>
      <dc:creator>bsaliga</dc:creator>
      <dc:date>2024-04-25T16:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Display Vertex Colors to Hotkey</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12735104#M3547</link>
      <description>&lt;LI-CODE lang="general"&gt;(
	obj = selection[1]
	if obj != undefined and classof obj == Editable_Poly do (
		if polyop.getMapSupport obj 0 do (
			obj.vertexColorType = #color
			if obj.showVertexColors then (
				obj.showVertexColors = off
			) else (
				obj.showVertexColors = on
			)
		)
	)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 26 Apr 2024 05:34:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12735104#M3547</guid>
      <dc:creator>dmitriy.shpilevoy</dc:creator>
      <dc:date>2024-04-26T05:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Display Vertex Colors to Hotkey</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12736944#M3548</link>
      <description>&lt;P&gt;Thanks this works. Had to have the material on the mesh for it to work.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2024 19:26:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12736944#M3548</guid>
      <dc:creator>bsaliga</dc:creator>
      <dc:date>2024-04-26T19:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Display Vertex Colors to Hotkey</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12736991#M3549</link>
      <description>Is there any way to get it to work with multiple selected objects and also in editable mesh mode?</description>
      <pubDate>Fri, 26 Apr 2024 19:39:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12736991#M3549</guid>
      <dc:creator>bsaliga</dc:creator>
      <dc:date>2024-04-26T19:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Display Vertex Colors to Hotkey</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12740104#M3550</link>
      <description>&lt;P&gt;Strange. I tested it on teapot with no material.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(
	function isValidObject obj = (
		valid = false
		case classOf(obj) of (
			Editable_Poly: (
				if polyop.getMapSupport obj 0 do (
					valid = true
				)
			)
			Editable_mesh: (
				if meshop.getMapSupport obj 0 do (
					valid = true
				)
			)
		)
		valid
	)
	
	for i in selection do (
		obj = i
		if isValidObject obj then (
			obj.vertexColorType = #color
			if obj.showVertexColors then (
				obj.showVertexColors = off
			) else (
				obj.showVertexColors = on
			)
		)
	)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 05:41:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12740104#M3550</guid>
      <dc:creator>dmitriy.shpilevoy</dc:creator>
      <dc:date>2024-04-29T05:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Display Vertex Colors to Hotkey</title>
      <link>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12743894#M3551</link>
      <description>Thank you! Can confirm this now works in Editable Mesh/Poly and with multiple objects selected. I appreciate it!</description>
      <pubDate>Tue, 30 Apr 2024 15:01:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-forum/assign-display-vertex-colors-to-hotkey/m-p/12743894#M3551</guid>
      <dc:creator>bsaliga</dc:creator>
      <dc:date>2024-04-30T15:01:30Z</dc:date>
    </item>
  </channel>
</rss>

