*** empty log message ***
This commit is contained in:
parent
e18c718a52
commit
5022b9e9b6
|
|
@ -25,6 +25,10 @@ EggToBam() :
|
|||
("This program reads Egg files and outputs Bam files, the binary format "
|
||||
"suitable for direct loading of animation and models into Panda.");
|
||||
|
||||
// -f is always in effect for egg2bam. It doesn't make sense to
|
||||
// provide it as an option to the user.
|
||||
remove_option("f");
|
||||
|
||||
add_option
|
||||
("tp", "path", 0,
|
||||
"Add the indicated colon-delimited paths to the texture-path. This "
|
||||
|
|
|
|||
|
|
@ -333,7 +333,7 @@ cvs_add(const Filename &filename) {
|
|||
return false;
|
||||
}
|
||||
|
||||
string command = _cvs_binary + " add " + filename.get_basename();
|
||||
string command = _cvs_binary + " add -kb " + filename.get_basename();
|
||||
nout << command << "\n";
|
||||
int result = system(command.c_str());
|
||||
|
||||
|
|
|
|||
|
|
@ -480,7 +480,7 @@ scan_scene_file(istream &in) {
|
|||
////////////////////////////////////////////////////////////////////
|
||||
bool SoftCVS::
|
||||
cvs_add(const string &path) {
|
||||
string command = _cvs_binary + " add " + path;
|
||||
string command = _cvs_binary + " add -kb " + path;
|
||||
nout << command << "\n";
|
||||
int result = system(command.c_str());
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue