2.50:
svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r19820:HEAD Notes: * Game and sequencer RNA, and sequencer header are now out of date a bit after changes in trunk. * I didn't know how to port these bugfixes, most likely they are not needed anymore. * Fix "duplicate strip" always increase the user count for ipo. * IPO pinning on sequencer strips was lost during Undo.
This commit is contained in:
@@ -52,7 +52,7 @@ SCA_TimeEventManager::SCA_TimeEventManager(SCA_LogicManager* logicmgr)
|
||||
SCA_TimeEventManager::~SCA_TimeEventManager()
|
||||
{
|
||||
for (vector<CValue*>::iterator it = m_timevalues.begin();
|
||||
!(it == m_timevalues.end()); it++)
|
||||
!(it == m_timevalues.end()); ++it)
|
||||
{
|
||||
(*it)->Release();
|
||||
}
|
||||
@@ -80,7 +80,7 @@ void SCA_TimeEventManager::NextFrame(double curtime, double fixedtime)
|
||||
|
||||
// update sensors, but ... need deltatime !
|
||||
for (vector<CValue*>::iterator it = m_timevalues.begin();
|
||||
!(it == m_timevalues.end()); it++)
|
||||
!(it == m_timevalues.end()); ++it)
|
||||
{
|
||||
float newtime = (*it)->GetNumber() + fixedtime;
|
||||
floatval->SetFloat(newtime);
|
||||
@@ -104,7 +104,7 @@ void SCA_TimeEventManager::AddTimeProperty(CValue* timeval)
|
||||
void SCA_TimeEventManager::RemoveTimeProperty(CValue* timeval)
|
||||
{
|
||||
for (vector<CValue*>::iterator it = m_timevalues.begin();
|
||||
!(it == m_timevalues.end()); it++)
|
||||
!(it == m_timevalues.end()); ++it)
|
||||
{
|
||||
if ((*it) == timeval)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user