blob: a3e9f0423e563bd9ff7ccf834d5fa28efed9c62a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
global proc AECarStartLocatorNodeTemplate( string $nodeName )
{
editorTemplate -beginScrollLayout;
editorTemplate -beginLayout "Locator Attributes" -collapse 0;
AElocatorCommon $nodeName;
editorTemplate -endLayout;
editorTemplate -beginLayout "Car Start Data" -collapse 0;
editorTemplate -addControl "isParked";
editorTemplate -addControl "specialName";
editorTemplate -endLayout;
editorTemplate -addExtraControls;
editorTemplate -endScrollLayout;
AEWBLocatorSuppress( $nodeName );
}
|