Mudbox/mudboxVersions.h Source File

mudboxVersions.h
Go to the documentation of this file.
1 //**************************************************************************/
2 // Copyright (c) 2012 Autodesk, Inc.
3 // All rights reserved.
4 //
5 // Use of this software is subject to the terms of the Autodesk license
6 // agreement provided at the time of installation or download, or which
7 // otherwise accompanies this software in either electronic or hard copy form.
8 //
9 //**************************************************************************/
10 // DESCRIPTION:
11 // CREATED: August 2012
12 //**************************************************************************/
13 
14 // The following constants are used to mark UI elements for potential
15 // highlighting. Newly-added menu items or tools should be identified
16 // as belonging to the version of Mudbox in which they are introduced.
17 // This information is used by the "What's New Highlighting" feature
18 // available through the Help menu.
19 //
20 // This header file will be updated for every release of Mudbox, with a
21 // constant for the new version.
22 //
23 // These constants should be passed into the "version" argument of calls
24 // such as interface::AddCallbackMenuItem(...)
25 
26 #define INTRODUCED_IN_MUDBOX_2013_OR_EARLIER 0 // Items introduced before Mudbox 2014 are never highlighted.
27 #define INTRODUCED_IN_MUDBOX_2014 1
28 #define INTRODUCED_IN_MUDBOX_2014_EXT1 2
29 #define INTRODUCED_IN_MUDBOX_2015 3
30 #define INTRODUCED_IN_MUDBOX_2016 4
31 #define INTRODUCED_IN_MUDBOX_2016_EXT1 5
32 #define INTRODUCED_IN_MUDBOX_2017 6
33 #define INTRODUCED_IN_MUDBOX_2018 7
34 // add new versions here, incrementing each by 1
35 
36 // Add strings to name each version to this macro
37 #define MUDBOX_VERSION_NAMES {\
38  "",\
39  "Mudbox 2014",\
40  "Mudbox 2014 Ext 1",\
41  "Mudbox 2015",\
42  "Mudbox 2016",\
43  "Mudbox 2016 Ext 1",\
44  "Mudbox 2017",\
45  "Mudbox 2018"\
46  }
47 
48 
49 // DO NOT USE the following constant, as it will change with each release
50 #define INTRODUCED_IN_CURRENT_VERSION 7
51 
52