*** empty log message ***
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user