missed copy updates
This commit is contained in:
parent
f4a8b1673c
commit
d76dc5dd28
|
|
@ -51,7 +51,8 @@ static ConfigVariableEnum<PartBundle::BlendType> anim_blend_type
|
|||
////////////////////////////////////////////////////////////////////
|
||||
PartBundle::
|
||||
PartBundle(const PartBundle ©) :
|
||||
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 ©) :
|
|||
////////////////////////////////////////////////////////////////////
|
||||
PartBundle::
|
||||
PartBundle(const string &name) :
|
||||
PartGroup(name)
|
||||
PartGroup(name),
|
||||
_modifies_anim_bundles(false)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue