I want to use Spriter with Oxygine2d. I inspire my self on the SFML example (wich compiles and runs well on my system). So far I am quite sure the images referenced by the SCML file are loaded well. But I get an error message when I call the function. inst->setTimeElapsed((int)t). An exception is thrown in the function.
real TimeInfo::getTimeRatio(real currentTime)
{
return easingCurve->adjustedTimeRatio(inverseLinear(time, nextTime, currentTime));
}
Unhandled exception thrown: read access violation.
this->easingCurve was 0xDDDDDDDD
Does someone recognise this problem?