Announcements

AREA content is being relocated to the Autodesk Community M&E Hub and Gallery. Notifications may be intermittently unavailable 10–12 November. Learn more HERE.

Slate Material Editor - Notes Node?

Slate Material Editor - Notes Node?

darawork
Advisor Advisor
1,819 Views
2 Replies
Message 1 of 3

Slate Material Editor - Notes Node?

darawork
Advisor
Advisor

Hi all,

 

I was just wonder if there was anything available to write notes onto in the Slate Material Editor?
Some times it would be handy to attach notes, explaining what certian parameters do in a long chain of a procedural texture for instance.

It seems it was asked about over in the Chaos forum a few years ago:
https://forums.chaos.com/forum/v-ray-for-3ds-max-forums/v-ray-for-3ds-max-wishlist/63253-vray-note-n...

Does anything like this exist? I have vRay and Corona renders installed here.
Thanks 🙂

Darawork
AutoDesk User
Windows 10/11, 3DS Max 2022/24, Revit 2022, AutoCad 2024, Dell Precision 5810/20, ASUS DIY, nVidia Quadro P5000/RTX 5000/GTX760

1,820 Views
2 Replies
Replies (2)
Message 2 of 3

10DSpace
Advisor
Advisor

@darawork 

 

No notepad script that I could find that is associated specifically with the SME.  But I have been using an old script called Notepad that operates at the scene level (see below).   

 

10DSpace_0-1648238261101.png

 

What I like about it is that it is non-modal so (unlike the Max File > Summary Info dialog) you can keep it active while working in the scene to check names of objects and so forth and the notes you write are stored with the scene.  What I don't like about it is that it's  dialog box is not expandable.  No text gets lost but the text doesn't wrap automatically so you have to introduce carriage returns to keep the text within the visible area.    I am sure there is a way to change the type of dialog box via maxscript, but haven't had time to play with that and it's been doing the job for me.  

 

The script can be downloaded here if you want to check it out:

 

http://www.scriptspot.com/3ds-max/scripts/notepad

 

Download the .ms version as the download link to the .zip version seems to be broken.   I dragged it to a custom toolbar and have been using the macro for about 2 years or so.   Not exactly what you are looking for, but maybe will get the job done till something better is available. 

 

 

 

Message 3 of 3

Swordslayer
Advisor
Advisor

Here's a script to add a 'Notes' rollout to the active material/texture:

 

(
	local noteCA = attributes note attribID:#(0x46e42c28, 0x39f62b12)
	(
		parameters data rollout:ui (storedText type:#string ui:note)
		rollout ui "Notes" (editText note height:150 labelOnTop:on)
	)

	local activeSlot = case matEditor.mode of
	(
		#basic : mEdit.getCurMtl()
		#advanced : SME.getMtlinParamEditor()
	)
	if isKindOf activeSlot Material do
		custAttributes.add activeSlot noteCA
)