Issues.00578 - lordmundi/wikidoctest GitHub Wiki
00578: time based lod animation doesn't work on windows
Summary: time based lod animation doesn't work on windows
Created: 2016–08–05 16:14
Status: Submitted
Category: Bug
From: frankie
Version: 2.3
Released_In:
Description:
Using a time based LOD, such as what is used on the plumes in the default load (to make them animate between 3 different models) does not work on windows.
Comments
frankie August 05, 2016, at 04:18 PM: As a workaround, you could just make the plume (or whatever model you are working with) a static model by getting rid of the lod fields and just using a regular "model(filename);" field on the node. The node won't animate.
If you need the node to animate, another workaround could be to use the SELECT mode of lod, and define 3 models for a node, for example. Then, in a tcl script you could selectively change the model being displayed. For example, we could redefine a plume as:
node(PLUME_TEST); parent(SSREF); lod(SELECT,1,tvrcspz0.bin); lod(SELECT,2,tvrcspz1.bin); lod(SELECT,3,tvrcspz2.bin);
Then, in a tcl script, we could select a particular model for the node with:
doug.node PLUME_TEST set -mod_lod_select 3
With callbacks, you could animate between different models as you like.