summaryrefslogtreecommitdiffstats
path: root/tools/MayaTools/Maya4.0/scripts/AETemplates/AERailCamLocatorNodeTemplate.mel
blob: 7d3178c80c64e5b8a6d50acdc0db9655e4b11168 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
global proc AERailCamLocatorNodeTemplate( string $nodeName )
{
	
	editorTemplate -beginScrollLayout;
	
		editorTemplate -beginLayout "Locator Attributes" -collapse 0;
			AElocatorCommon $nodeName;
		editorTemplate -endLayout;

        editorTemplate -beginLayout "Rail Attributes" -collapse false;
            editorTemplate -addControl "cutInOut";
			editorTemplate -addControl "carOnly";
            editorTemplate -addControl "onFootOnly";
			editorTemplate -addControl "reset";
			editorTemplate -addControl "noFOV";
            editorTemplate -addControl "camRail";
            editorTemplate -addControl "behaviour";
            editorTemplate -addControl "minRadius";
            editorTemplate -addControl "maxRadius";

            editorTemplate -addSeparator;

            editorTemplate -addControl "trackRail";
            editorTemplate -addControl "trackDist";
            editorTemplate -addControl "reverseSense";
            editorTemplate -addControl "fieldOfView";
            editorTemplate -addControl "facingOffset";
            editorTemplate -addControl "axisPlay";

            editorTemplate -addSeparator;

            editorTemplate -addControl "positionLag";
            editorTemplate -addControl "targetLag";

            editorTemplate -addSeparator;

            editorTemplate -addControl"active";
            editorTemplate -addControl "target";

            editorTemplate -addSeparator;
			editorTemplate -addControl "transitionTo"; 

            editorTemplate -callCustom "AEWBTargetSelectNew"
                    "AEWBTargetSelectReplace"
                    "message";

		editorTemplate -endLayout;

    	editorTemplate -addExtraControls;

    editorTemplate -endScrollLayout;


    AEWBLocatorSuppress( $nodeName );
}