*** empty log message ***

This commit is contained in:
Don BURNS
2003-06-24 15:40:09 +00:00
parent 5a939f5420
commit 15f88f35b2
91 changed files with 2871 additions and 1937 deletions

View File

@@ -51,7 +51,7 @@ void Node::write(DataOutputStream* out){
out->writeString(desc[i]);
}
// Write Stateset if any
out->writeInt((int) getStateSet());
out->writeLong((long) getStateSet());
if(getStateSet())
out->writeStateSet(getStateSet());
@@ -59,7 +59,7 @@ void Node::write(DataOutputStream* out){
// Write UpdateCallback if any
osg::NodeCallback* nc = getUpdateCallback();
if(nc && dynamic_cast<osg::AnimationPathCallback*>(nc)){
out->writeInt((int)nc);
out->writeLong((long)nc);
((ive::AnimationPathCallback*)(nc))->write(out);
}
else
@@ -103,4 +103,4 @@ void Node::read(DataInputStream* in){
else{
throw Exception("Node::read(): Expected Node identification");
}
}
}