mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -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
|
running, you won't be able to lerp the node or directly
|
||||||
position it.
|
position it.
|
||||||
"""
|
"""
|
||||||
if not self.wantsSmoothing() or self.isLocal():
|
if not self.wantsSmoothing() or self.isLocal() or self.isDisabled():
|
||||||
return
|
return
|
||||||
if not self.smoothStarted:
|
if not self.smoothStarted:
|
||||||
taskName = self.taskName("smooth")
|
taskName = self.taskName("smooth")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user