EditParamFlags.h

Go to the documentation of this file.
00001 //**************************************************************************/
00002 // Copyright (c) 1998-2006 Autodesk, Inc.
00003 // All rights reserved.
00004 // 
00005 // These coded instructions, statements, and computer programs contain
00006 // unpublished proprietary information written by Autodesk, Inc., and are
00007 // protected by Federal copyright law. They may not be disclosed to third
00008 // parties or copied or duplicated in any form, in whole or in part, without
00009 // the prior written consent of Autodesk, Inc.
00010 //**************************************************************************/
00011 #pragma once
00012 
00013 #include "buildver.h"
00014 
00015 // BeginEditParams flags values
00016 #define BEGIN_EDIT_CREATE       (1<<0)
00017 #define BEGIN_EDIT_MOTION       (1<<1)  // Controller is being edited in the motion branch
00018 #define BEGIN_EDIT_HIERARCHY    (1<<2)  // Same as BEGIN_EDIT_IK
00019 #define BEGIN_EDIT_IK           (1<<2)  // Controller is being edited in the IK subtask of the hierarchy branch
00020 #define BEGIN_EDIT_LINKINFO     (1<<3)  // Controller is being edited in the Link Info  subtask of the hierarchy branch
00021 #define BEGIN_EDIT_SHAPE_NO_RENDPARAM (1<<5) // Used by LoftSpline
00022 
00023 // EndEditParams flags values
00024 #define END_EDIT_REMOVEUI  (1<<0)