56 lines
1.6 KiB
C++
56 lines
1.6 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 config_softegg.cxx
|
|
* @author masad
|
|
* @date 2003-09-25
|
|
*/
|
|
|
|
#include "config_softegg.h"
|
|
#include "softEggGroupUserData.h"
|
|
#include "softNodeDesc.h"
|
|
|
|
#include "dconfig.h"
|
|
|
|
Configure(config_softegg);
|
|
NotifyCategoryDef(softegg, ":soft");
|
|
|
|
ConfigureFn(config_softegg) {
|
|
init_libsoftegg();
|
|
}
|
|
|
|
// These control the default behavior of the softegg converter, but not
|
|
// necessarily the default behavior of the soft2egg command-line tool (which
|
|
// has its own defaults).
|
|
|
|
// Should we respect the Soft? double-sided flag (true) or ignore it and
|
|
// assume everything is single-sided (false)?
|
|
ConfigVariableBool soft_default_double_sided("soft-default-double-sided", false);
|
|
|
|
// Should we apply vertex color even when a texture is applied (true) or only
|
|
// when no texture is applied or the vertex-color egg flag is set (false)?
|
|
ConfigVariableBool soft_default_vertex_color("soft-default-vertex-color", true);
|
|
|
|
/**
|
|
* Initializes the library. This must be called at least once before any of
|
|
* the functions or classes in this library can be used. Normally it will be
|
|
* called by the static initializers and need not be called explicitly, but
|
|
* special cases exist.
|
|
*/
|
|
void
|
|
init_libsoftegg() {
|
|
static bool initialized = false;
|
|
if (initialized) {
|
|
return;
|
|
}
|
|
initialized = true;
|
|
|
|
SoftEggGroupUserData::init_type();
|
|
SoftNodeDesc::init_type();
|
|
}
|