Answered
I want to control the mesh opacity of an object so that it reveals slowly instead of instantly. Is there a "Timer" method in the 3D annotation javascript so I can control opacity?
I want to control the mesh opacity of an object so that it reveals slowly instead of instantly. Is there a "Timer" method in the 3D annotation javascript so I can control opacity?
var TEH = new TimeEventHandler();
TEH.onTimeChange = true;
TEH.onEvent = function( event )
{
do-something-based-on( event.deltaTime );
}
runtime.addEventHandler( TEH );