コード例 #1
0
ファイル: StringTimelineModel.cpp プロジェクト: fjz13/Medusa
StringRef StringTimelineModel::GetString(float time) const
{
	intp index = GetSteppedFrameIndex(time);
	return mStrings[index];
}
コード例 #2
0
ファイル: IKTimelineModel.cpp プロジェクト: johndpope/Medusa
bool IKTimelineModel::IsBlendPositive(float time) const
{
	intp index = GetSteppedFrameIndex(time);
	return mBlendPositives[index];
}