Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPorteries Tristan <republicthunderbolt9@gmail.com>2015-07-01 17:38:31 +0300
committerPorteries Tristan <republicthunderbolt9@gmail.com>2015-07-01 17:51:48 +0300
commit607dca070587f4d8bc4afa3c4a49e0f9a74873cd (patch)
tree3969f1922125584f4e924d6b625980ca63aa5177 /source/gameengine/Ketsji/KX_GameObject.cpp
parentd3709f4e7948b03defa76908a2043018e3fecffa (diff)
BGE: Fix T44069 playing action during libfree.
Diffstat (limited to 'source/gameengine/Ketsji/KX_GameObject.cpp')
-rw-r--r--source/gameengine/Ketsji/KX_GameObject.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/gameengine/Ketsji/KX_GameObject.cpp b/source/gameengine/Ketsji/KX_GameObject.cpp
index 5701d0e54a0..d98669cc5b4 100644
--- a/source/gameengine/Ketsji/KX_GameObject.cpp
+++ b/source/gameengine/Ketsji/KX_GameObject.cpp
@@ -469,6 +469,11 @@ void KX_GameObject::StopAction(short layer)
GetActionManager()->StopAction(layer);
}
+void KX_GameObject::RemoveTaggedActions()
+{
+ GetActionManager()->RemoveTaggedActions();
+}
+
bool KX_GameObject::IsActionDone(short layer)
{
return GetActionManager()->IsActionDone(layer);