YouGroove Posted May 4, 2014 Share Posted May 4, 2014 I have last update of LE3.1 Lua/Steam/Win7. Double click on Models/Railing and some model to view it on model editor i have LE3 editor crashing. Stop toying and make games Link to comment Share on other sites More sharing options...
Josh Posted May 4, 2014 Share Posted May 4, 2014 It actually happens with any non-animated model. Here's the code that causes it. Can anyone guess why?: std::string Entity::GetAnimationName(const int index) { if (index<0 || index>animationname.size() - 1) return ""; return animationname[index];// crashes here, even though index is zero! } Answer: size() returns an unsigned integer. My job is to make tools you love, with the features you want, and performance you can't live without. Link to comment Share on other sites More sharing options...
Recommended Posts