Time InfoAvailability LightWave® 6.5 The time info global returns the time of the frame currently being rendered. As with other pointers to data, the pointer to the TimeInfo global should be reaquired each time prior to referencing to ensure it contains current values. Global Call LWTimeInfo *timeinfo; timeinfo = global( LWTIMEINFO_GLOBAL, GFUSE_TRANSIENT ); The global function returns a pointer to an LWTimeInfo. typedef struct st_LWTimeInfo { LWTime time; LWFrame frame; } LWTimeInfo;
|