本文整理汇总了C++中ModelLoader::Get方法的典型用法代码示例。如果您正苦于以下问题:C++ ModelLoader::Get方法的具体用法?C++ ModelLoader::Get怎么用?C++ ModelLoader::Get使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModelLoader
的用法示例。
在下文中一共展示了ModelLoader::Get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Load
bool Model :: Load(std :: string name,ModelLoader &loader,Texture &tex)
{
// attempt to load the file
if(!loader.Load(name))
return false;
// do we have to clean up?
if(frames)
this->Clear();
// get the model information
int modelframes=loader.GetNumFrames();
int nummeshes=loader.GetNumMeshes();
float modelfps=(float)loader.GetFPS();
// tidy up the values
if(modelframes<=0)
return false;
if(modelfps==0.0f)
modelfps=1.0f;
// and setup our model
if(!this->Setup(modelframes,modelfps))
return false;
// now set up the frames
for(int ct=0; ct<numframes; ct++)
{
// setup the frame
if(!frames[ct].Setup(nummeshes))
{
this->Clear();
return false;
}
// add the meshes
for(int ct2=0; ct2<nummeshes; ct2++)
{
Mesh msh; // temporary mesh
// get the mesh
if(!loader.Get(ct,ct2,&tex,&msh))
return false;
// and set it to the frame
frames[ct].SetMesh(ct2,msh);
}
}
// success
return true;
}