BUGFIX: Fix typo in PlyLoader.cpp. Thanks to Chris Maiwald for the bugreport.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@529 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/1/head
parent
4b45802736
commit
1c0f3f1b2e
7
CREDITS
7
CREDITS
|
@ -39,7 +39,7 @@ supplied a bugfix concerning the scaling in the md3 loader.
|
||||||
submitted patches to make Assimp compile with GCC-4, a makefile and the xcode3 workspace.
|
submitted patches to make Assimp compile with GCC-4, a makefile and the xcode3 workspace.
|
||||||
|
|
||||||
- Andreas Nagel
|
- Andreas Nagel
|
||||||
tested Assimp under Windows Vista 64 Bit.
|
first Assimp testing & verification under Windows Vista 64 Bit.
|
||||||
|
|
||||||
- Marius Schröder
|
- Marius Schröder
|
||||||
allowed us to use many of his models for screenshots and testing.
|
allowed us to use many of his models for screenshots and testing.
|
||||||
|
@ -48,7 +48,7 @@ allowed us to use many of his models for screenshots and testing.
|
||||||
supplied various XFiles for testing purposes.
|
supplied various XFiles for testing purposes.
|
||||||
|
|
||||||
- Tizian Wieland
|
- Tizian Wieland
|
||||||
searched the web for several thousands of test models for internal use
|
searched the web for hundreds of test models for internal use
|
||||||
|
|
||||||
- John Connors
|
- John Connors
|
||||||
supplied patches for linux and SCons.
|
supplied patches for linux and SCons.
|
||||||
|
@ -73,3 +73,6 @@ Improvements in OpenGL-Sample.
|
||||||
|
|
||||||
- Robert Ramirez
|
- Robert Ramirez
|
||||||
Add group loading feature to Obj-Loader.
|
Add group loading feature to Obj-Loader.
|
||||||
|
|
||||||
|
- Chris Maiwald
|
||||||
|
Many bugreports, improving Assimp's portability, regular testing & feedback.
|
||||||
|
|
|
@ -978,7 +978,7 @@ void PLYImporter::LoadMaterial(std::vector<MaterialHelper*>* pvOut)
|
||||||
}
|
}
|
||||||
else if (PLY::EST_AmbientBlue == (*a).Semantic)
|
else if (PLY::EST_AmbientBlue == (*a).Semantic)
|
||||||
{
|
{
|
||||||
aaiPositions[22][2] = _a;
|
aaiPositions[2][2] = _a;
|
||||||
aaiTypes[2][2] = (*a).eType;
|
aaiTypes[2][2] = (*a).eType;
|
||||||
}
|
}
|
||||||
else if (PLY::EST_AmbientAlpha == (*a).Semantic)
|
else if (PLY::EST_AmbientAlpha == (*a).Semantic)
|
||||||
|
|
Loading…
Reference in New Issue