//
// Attribute editor template script File
//
// Description
// Creates the attribute editor controls for this node
//
// Input Value:
//	nodeName 
//
// Output Value:
//	None
//


global proc AEmib_opacityTemplate(string $nodeName)
{
	AEswatchDisplay $nodeName;
	editorTemplate -beginScrollLayout;

	editorTemplate -beginLayout (getPluginResource("Mayatomr", "kmibOpacityTempParams")) -collapse 0;

	editorTemplate -label (getPluginResource("Mayatomr", "kmibOpacityTempInput")) -addControl "input";
	editorTemplate -label (getPluginResource("Mayatomr", "kOpacity")) -addControl "opacity";

	editorTemplate -endLayout;

	AEmentalrayBaseTemplate($nodeName);
	editorTemplate -endScrollLayout;
}
