Almost done with implementation of Transition! Settings and UI side

pannel are operational. View is stable and animation with UpdateCallback
implemented.
This commit is contained in:
brunoherbelin
2020-07-06 00:06:49 +02:00
parent d4a22992eb
commit b5985847bf
14 changed files with 229 additions and 78 deletions

View File

@@ -34,7 +34,11 @@ Node::Node() : initialized_(false), visible_(true), refcount_(0)
Node::~Node ()
{
clearCallbacks();
}
void Node::clearCallbacks()
{
std::list<UpdateCallback *>::iterator iter;
for (iter=update_callbacks_.begin(); iter != update_callbacks_.end(); )
{