mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 16:58:40 -04:00
added b_setXYZH
This commit is contained in:
parent
9478e2bf08
commit
fe3d571f82
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user