fbxreference.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /****************************************************************************************
  2. Copyright (C) 2015 Autodesk, Inc.
  3. All rights reserved.
  4. Use of this software is subject to the terms of the Autodesk license agreement
  5. provided at the time of installation or download, or which otherwise accompanies
  6. this software in either electronic or hard copy form.
  7. ****************************************************************************************/
  8. //! \file fbxreference.h
  9. #ifndef _FBXSDK_SCENE_REFERENCE_H_
  10. #define _FBXSDK_SCENE_REFERENCE_H_
  11. #include <fbxsdk/fbxsdk_def.h>
  12. #include <fbxsdk/core/fbxobject.h>
  13. #include <fbxsdk/fbxsdk_nsbegin.h>
  14. /** Contains information about a referenced file.
  15. * \nosubgrouping
  16. */
  17. class FBXSDK_DLL FbxSceneReference : public FbxObject
  18. {
  19. FBXSDK_OBJECT_DECLARE(FbxSceneReference, FbxObject);
  20. public:
  21. /// \name Basic properties
  22. //@{
  23. //! Path to the referenced file.
  24. FbxPropertyT< FbxString > ReferenceFilePath;
  25. //! Referenced file's namespace.
  26. FbxPropertyT< FbxString > ReferenceNameSpace;
  27. //! Referenced file's node name.
  28. FbxPropertyT< FbxString > ReferenceNodeName;
  29. //! Referenced file's node depth.
  30. FbxPropertyT< FbxInt> ReferenceDepth;
  31. //! \c True if referenced file is loaded.
  32. FbxPropertyT< FbxBool > IsLoaded;
  33. //! \c True if referenced file is locked.
  34. FbxPropertyT< FbxBool > IsLocked;
  35. //@}
  36. /// \name Proxy related properties.
  37. //@{
  38. //! \c True if referenced file is the original proxy.
  39. FbxPropertyT< FbxBool > IsOriginalProxy;
  40. //! \c True if referenced file is active.
  41. FbxPropertyT< FbxBool > IsActiveProxy;
  42. //! The name of proxy manager where the referenced file's proxy can be found.
  43. FbxPropertyT< FbxString > ProxyManagerName;
  44. /** Referenced file's proxy tag.
  45. * \remarks Proxy tags are unique names assigned to proxy references to more easily manage those references in Maya.
  46. */
  47. FbxPropertyT< FbxString > ProxyTag;
  48. //@}
  49. /*****************************************************************************************************************************
  50. ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! **
  51. *****************************************************************************************************************************/
  52. #ifndef DOXYGEN_SHOULD_SKIP_THIS
  53. protected:
  54. virtual void ConstructProperties(bool pForceSet);
  55. #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/
  56. };
  57. #include <fbxsdk/fbxsdk_nsend.h>
  58. #endif /* _FBXSDK_SCENE_REFERENCE_H_ */