summaryrefslogtreecommitdiffstats
path: root/tools/worldbuilder/code/AETemplates/AEBreakableCameraLocatorNodeTemplate.mel
blob: 82a08f2793a3be79992126fe1131b2c1c93b174b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
global proc AEBreakableCameraLocatorNodeTemplate( string $nodeName )
{
	
	editorTemplate -beginScrollLayout;
	
		editorTemplate -beginLayout "Locator Attributes" -collapse 0;
			AElocatorCommon $nodeName;
		editorTemplate -endLayout;
        
		editorTemplate -beginLayout "FOV Settings" -collapse 0;
            editorTemplate -addControl "fov";
		editorTemplate -endLayout;

    	editorTemplate -addExtraControls;

    editorTemplate -endScrollLayout;

    AEWBLocatorSuppress( $nodeName );
}