missed copy updates

This commit is contained in:
Zachary Pavlov 2007-06-20 21:48:33 +00:00
parent f4a8b1673c
commit d76dc5dd28
2 changed files with 5 additions and 3 deletions

View File

@ -51,7 +51,8 @@ static ConfigVariableEnum<PartBundle::BlendType> anim_blend_type
////////////////////////////////////////////////////////////////////
PartBundle::
PartBundle(const PartBundle &copy) :
PartGroup(copy)
PartGroup(copy),
_modifies_anim_bundles(copy._modifies_anim_bundles)
{
CDWriter cdata(_cycler, true);
CDReader cdata_from(copy._cycler);
@ -70,7 +71,8 @@ PartBundle(const PartBundle &copy) :
////////////////////////////////////////////////////////////////////
PartBundle::
PartBundle(const string &name) :
PartGroup(name)
PartGroup(name),
_modifies_anim_bundles(false)
{
}

View File

@ -140,9 +140,9 @@ protected:
private:
//this is used to determine when to copy the anim bundle
bool _modifies_anim_bundles;
class CData;
void do_set_control_effect(AnimControl *control, float effect, CData *cdata);