RealDocs

FMontageSubStepper::TimeStretchMarkerIndex

property Engine Since unknown
#include "Animation/AnimMontage.h"
Access: private

Description

Index into the montage's TimeStretchCurve marker list tracking which time-stretch segment the sub-stepper currently occupies.

Caveats & Gotchas

  • Only meaningful once bHasValidTimeStretchCurveData is true — for montages without a TimeStretchCurve it stays at its INDEX_NONE default and is never read.
  • Private to FMontageSubStepper and only mutated by ConditionallyUpdateTimeStretchCurveCachedData(); there is no accessor exposed for it.

Signature

int32 TimeStretchMarkerIndex;

Example

Internal use during time-stretch stepping C++
// Engine-internal: FMontageSubStepper::ConditionallyUpdateTimeStretchCurveCachedData()
if (bHasValidTimeStretchCurveData)
{
	// TimeStretchMarkerIndex advances as playback crosses each marker
}

Version History

Introduced in: unknown

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.