- fixed: instant sector movement actions must actually delete the created interpolation right away and not wait until it deletes itself.
This commit is contained in:
parent
c5c4ec83c2
commit
bf03ea496e
8 changed files with 19 additions and 25 deletions
|
|
@ -95,11 +95,11 @@ void DMover::Serialize (FArchive &arc)
|
|||
arc << interpolation;
|
||||
}
|
||||
|
||||
void DMover::StopInterpolation()
|
||||
void DMover::StopInterpolation(bool force)
|
||||
{
|
||||
if (interpolation != NULL)
|
||||
{
|
||||
interpolation->DelRef();
|
||||
interpolation->DelRef(force);
|
||||
interpolation = NULL;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue