From fe3d571f82c15eca38b0fa8c2923a863bc6086a3 Mon Sep 17 00:00:00 2001 From: Samir Naik Date: Wed, 5 Oct 2005 18:56:48 +0000 Subject: [PATCH] added b_setXYZH --- direct/src/distributed/DistributedNodeAI.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/direct/src/distributed/DistributedNodeAI.py b/direct/src/distributed/DistributedNodeAI.py index 1022760e0e..014d0402cd 100644 --- a/direct/src/distributed/DistributedNodeAI.py +++ b/direct/src/distributed/DistributedNodeAI.py @@ -116,6 +116,9 @@ class DistributedNodeAI(DistributedObjectAI.DistributedObjectAI, NodePath): def d_setXYH(self, x, y, h): self.sendUpdate("setXYH", [x, y, h]) + def b_setXYZH(self, x, y, z, h): + self.setXYZH(x,y,z,h) + self.d_setXYZH(x,y,z,h) def setXYZH(self, x, y, z, h): self.setPos(x, y, z) self.setH(h)