Hello all,<br><br>Is there an easy way to update an actor in a scene?&nbsp; I have several actors and I want the user to be able to manipulate one of them using some kind of text input, and I&#39;d like the actor to update on the screen as the user is typing.&nbsp; I&#39;ve tried doing something like this and a couple of variations, but I haven&#39;t managed to find a call that does what I&#39;m looking for:<br>
<br>//set up all of the renderer stuff - creation of these objects and the data behind the actor occurs before this<br>pActor-&gt;SetPosition(0.0, 0.0, 0.0);<br>pRenderer-&gt;AddActor(pActor);<br>pRenderer-&gt;Render();<br>
<br>// Let the user type something and store the input in double Input, for example<br>pActor-&gt;SetPosition(Input, 0.0, 0.0);// same object we used above<br>pRenderer-&gt;Render();<br><br><br>Any help or ideas are appreciated.<br>
<br>Thanks,<br><br>Kerry<br>