View Single Post
  #2  
Old 10-16-2013, 12:20 AM
Frank Verberne Frank Verberne is offline
Member
 
Join Date: Mar 2008
Location: Netherlands
Posts: 148
If you change:
Code:
cube2.setPosition((0.0,0.0,10.0), mode = viz.ABS_GLOBAL)
to:
Code:
cube2.setPosition(0.0,0.0,10.0, mode = viz.ABS_GLOBAL)
then both cubes are set in the same position. Apparently, there's a difference between node.setPosition((0.0,0.0,10.0)) and node.setPosition(0.0,0.0,10.0).
Reply With Quote