summaryrefslogtreecommitdiffstats
path: root/tools/worldbuilder/code/AETemplates/AETriggerVolumeNodeTemplate.mel
blob: 4166b0e60cf43be8aa3684d9821eab3400d07993 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
global proc AETriggerVolumeNodeTemplate( string $nodeName )
{
	
	editorTemplate -beginScrollLayout;
	
		editorTemplate -beginLayout "Trigger Volume Attributes" -collapse 0;
			AElocatorCommon $nodeName;

            editorTemplate -addControl "type";
		editorTemplate -endLayout;
        
        editorTemplate -addExtraControls;

    editorTemplate -endScrollLayout;

    AEWBLocatorSuppress( $nodeName );
}