54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
|
/**
|
||
|
* 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."
|
||
|
*
|
||
|
* @file mayaEggGroupUserData.h
|
||
|
* @author drose
|
||
|
* @date 2003-06-03
|
||
|
*/
|
||
|
|
||
|
#ifndef MAYAEGGGROUPUSERDATA_H
|
||
|
#define MAYAEGGGROUPUSERDATA_H
|
||
|
|
||
|
#include "pandatoolbase.h"
|
||
|
#include "eggUserData.h"
|
||
|
|
||
|
/**
|
||
|
* This class contains extra user data which is piggybacked onto EggGroup
|
||
|
* objects for the purpose of the maya converter.
|
||
|
*/
|
||
|
class MayaEggGroupUserData : public EggUserData {
|
||
|
public:
|
||
|
INLINE MayaEggGroupUserData();
|
||
|
INLINE MayaEggGroupUserData(const MayaEggGroupUserData ©);
|
||
|
INLINE void operator = (const MayaEggGroupUserData ©);
|
||
|
|
||
|
bool _vertex_color;
|
||
|
bool _double_sided;
|
||
|
|
||
|
public:
|
||
|
static TypeHandle get_class_type() {
|
||
|
return _type_handle;
|
||
|
}
|
||
|
static void init_type() {
|
||
|
EggUserData::init_type();
|
||
|
register_type(_type_handle, "MayaEggGroupUserData",
|
||
|
EggUserData::get_class_type());
|
||
|
}
|
||
|
virtual TypeHandle get_type() const {
|
||
|
return get_class_type();
|
||
|
}
|
||
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
||
|
|
||
|
private:
|
||
|
static TypeHandle _type_handle;
|
||
|
};
|
||
|
|
||
|
#include "mayaEggGroupUserData.I"
|
||
|
|
||
|
#endif
|