Exemplo n.º 1
0
FRichCurveKey FRichCurve::GetKey(FKeyHandle KeyHandle) const
{
	EnsureAllIndicesHaveHandles();
	return Keys[GetIndex(KeyHandle)];
}
Exemplo n.º 2
0
FIntegralKey& FIntegralCurve::GetKey(FKeyHandle KeyHandle)
{
	EnsureAllIndicesHaveHandles();
	return Keys[GetIndex(KeyHandle)];
}
Exemplo n.º 3
0
TMap<FKeyHandle, int32>::TConstIterator FIndexedCurve::GetKeyHandleIterator() const
{
	EnsureAllIndicesHaveHandles();
	return KeyHandlesToIndices.CreateConstIterator();
}
Exemplo n.º 4
0
bool FIndexedCurve::IsKeyHandleValid(FKeyHandle KeyHandle) const
{
	EnsureAllIndicesHaveHandles();
	return KeyHandlesToIndices.Find(KeyHandle) != NULL;
}
Exemplo n.º 5
0
FNameCurveKey& FNameCurve::GetKey(FKeyHandle KeyHandle)
{
	EnsureAllIndicesHaveHandles();
	return Keys[GetIndex(KeyHandle)];
}