49 lines
1.3 KiB
C++
Executable File
49 lines
1.3 KiB
C++
Executable File
// Filename: mayaPview.h
|
|
// Created by: drose (11Mar03)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef MAYAPVIEW_H
|
|
#define MAYAPVIEW_H
|
|
|
|
#include "pandatoolbase.h"
|
|
#include "pandaFramework.h"
|
|
|
|
#include "pre_maya_include.h"
|
|
#include <maya/MArgList.h>
|
|
#include <maya/MPxCommand.h>
|
|
#include <maya/MObject.h>
|
|
#include "post_maya_include.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : MayaPview
|
|
// Description : This class serves as a plug-in to Maya to allow
|
|
// viewing the current Maya selection as it will be
|
|
// converted to Panda.
|
|
////////////////////////////////////////////////////////////////////
|
|
class MayaPview : public MPxCommand {
|
|
public:
|
|
MayaPview();
|
|
virtual MStatus doIt(const MArgList &args);
|
|
|
|
static void *creator();
|
|
|
|
private:
|
|
bool convert(const NodePath &parent, bool animate);
|
|
};
|
|
|
|
EXPCL_MISC MStatus initializePlugin(MObject obj);
|
|
EXPCL_MISC MStatus uninitializePlugin(MObject obj);
|
|
|
|
|
|
#endif
|