Ejemplo n.º 1
0
Timeline::Timeline(const Timeline &other):
	Action(other),
	_currentActionIndex(other._currentActionIndex),
	_bindingObject(nullptr)
{
	Timeline *rtl = other.GetRootTimeline();
	Action::SetRootTimeline(rtl != &other ? rtl : this);
	Object::Clone(other._actions, &_actions, this->GetRootTimeline(), this);
	
	this->InitProperties();
}