mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
don't enable smoothing after node is disabled
This commit is contained in:
parent
923bf3f465
commit
8e6fc1d0ff
@ -110,7 +110,7 @@ class DistributedSmoothNode(DistributedNode.DistributedNode):
|
||||
running, you won't be able to lerp the node or directly
|
||||
position it.
|
||||
"""
|
||||
if not self.wantsSmoothing() or self.isLocal():
|
||||
if not self.wantsSmoothing() or self.isLocal() or self.isDisabled():
|
||||
return
|
||||
if not self.smoothStarted:
|
||||
taskName = self.taskName("smooth")
|
||||
|
Loading…
x
Reference in New Issue
Block a user