![]() |
#1
|
|||
|
|||
The get command
Hi there,
I have a duck walking circles in my world. I have this keyboard action that gets me the position of the duck whenever I press '1'. However, for some reason, even when I did put 2 arguments into my get call, the 'output' window on vizard gives me an error message that says: File "jonsworld.py", line 141, in mykeyboard duckangle = duck.get(viz.POSITION, viz.ABSOLUTE_WORLD) TypeError: get() takes exactly 2 arguments (3 given) Is there something wrong with my line of code? Thanks! |
#2
|
|||
|
|||
Hi,
This is a bug that has been recently fixed. In the meantime you can do the following: Code:
duckangle = viz.VizNode.get(duck,viz.POSITION,viz.ABSOLUTE_WORLD) |
![]() |
|
|