WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   Unscriptable Object Error (https://forum.worldviz.com/showthread.php?t=782)

shivanangel 10-11-2006 09:20 AM

Unscriptable Object Error
 
Hi,

what does the error:

TypeError: unsubscriptable object

mean?

I am taking in translation data from two objects,
a viewpoint and an model and I'm
trying to subtract to find a difference between
the two for a camera rig I'm working on.

I use viz.get(viz.POSITION)
to get the location of the elements and place them
in variables. I tried using the array type and then
I tried separating the individual translation components
into x, y, and z variables but I keep getting the same error.

Thanks

farshizzo 10-11-2006 11:04 AM

The error means that the object you are trying to access is not a list. This is because viz.get(viz.POSITION) is not a valid command. If you are trying to get the position of the viewpoint try the following instead:
Code:

viz.get(viz.HEAD_POS)
For node objects you would do:
Code:

node.get(viz.POSITION)


All times are GMT -7. The time now is 05:51 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC