terminal transform matrix error

terminal transform matrix error

Anonymous
Not applicable
593 Views
1 Reply
Message 1 of 2

terminal transform matrix error

Anonymous
Not applicable

Hi,

 

i was wondering if any can help with with this issue,,this fault is showing up in the terminal

 

vrNodePtr::setTransformMatrix : Node Pointer ==NullFC!

 

note: i running the tracker script also, but removing it doesn't fix this issue

 

the VR still work well, no usage issue,, maybe a bit of lag,,

but is error floods the terminal 

0 Likes
594 Views
1 Reply
Reply (1)
Message 2 of 2

marcus_fritzen
Autodesk
Autodesk

Hi,

 

this means that the vrNodePtr on which setTransformMatrix is called is not valid. Please check your script for the setTransformMatrix call and validate the associated vrNodePtr. Here is an example which shows a possible cause for the issue:

node = findNode("Foo") // there is no node with name "Foo" in our scene graph but we try to find it anyways

node.setTransformMatrix(...) -> will cause the error.

 

Cheers,
Marcus



Marcus Fritzen
Principal Engineer
0 Likes