when attempting to build the latest svn sprite plugin I get:
.\Edittime.cpp(66) : error C2039: 'GetAnimationName' : is not a member of 'VEditTime'
c:\program files (x86)\scirra\sdk\sprite2\..\..\Common\VEdittime.h(14) : see declaration of 'VEditTime'
Drawing.cpp
.\Drawing.cpp(120) : error C2039: 'GetAnimationName' : is not a member of 'VEditTime'
c:\program files (x86)\scirra\sdk\sprite2\..\..\Common\VEdittime.h(14) : see declaration of 'VEditTime'[/code:2p0cvmpe]
Edittime.cpp(66) is:
[quote:2p0cvmpe]int FindAnAnimationWithName(VEditTime* pEditTime, int anim, CString name)
{
if(pEditTime->QueryAnimationFrameCount(anim) > 0 && name.CompareNoCase(pEditTime->GetAnimationName(anim)) == 0)
and Drawing.cpp(120) is
[quote:2p0cvmpe]int FindAFrameWithAnimationName(VEditTime* pEditTime, int anim, CString startAnim, int index)
{
if(startAnim.CompareNoCase(pEditTime->[b]GetAnimationName(anim)[/b]) == 0 // Equal
EDIT: Solved, just overwrote the common folder from the SVN to my scirra directory