PDA

View Full Version : Changing objects in scene


Van
11-25-2016, 06:07 AM
My objective is change or swap similar object (10 Avators) in a position.
Using single Keyboard button or PPT Wand button or radio buttons.
Please help on the same.

Jeff
11-26-2016, 01:47 PM
Use the vizact.onkeydown (http://docs.worldviz.com/vizard/#commands/vizact/onkeydown.htm) command to register functions for key down events. In the callback function add your code to swap objects. One way to swap objects is load them all at the beginning and set only one to be visible at a time.

Van
12-02-2016, 02:04 AM
Thanks Jeff