As is apparent from the subject I'm trying to get a text scene node to move with the camera in my program so that it can always be visible. I am using irredit and have managed to position the text node so that it is visible when the camera spawns. However when I add the scene node as a child of the camera the text disappears. I am relatively new to this program and c++ in general so I may be missing something obvious.
Thanks for any help,
Michael Dillon
Trying to get a text scene node to move with camera
Yeah, getting a good offset (position relative to the camera) for a child can be tricky but you've just got to do some trial and error. As MasterGod says setting the position of the text to 0,0,10 will place the text 10 units down the camera's z axis and it will remain there when the camera rotates and moves so it will always be 10 units down the camera's z axis, i guess that should make it visible all the time but you've just got to try some different values for the offset until you see it on the screen properly.

