mirror of
https://github.com/minetest/irrlicht.git
synced 2025-06-30 23:30:27 +02:00
Important comments
This commit is contained in:
@ -44,6 +44,7 @@ bool CB3DJSONMeshFileLoader::isALoadableFileExtension(
|
|||||||
|
|
||||||
IAnimatedMesh* parseModel(json model) {
|
IAnimatedMesh* parseModel(json model) {
|
||||||
|
|
||||||
|
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,12 +56,8 @@ IAnimatedMesh* CB3DJSONMeshFileLoader::createMesh(io::IReadFile* file) {
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
// println("I am loading your cool file, yay");
|
|
||||||
|
|
||||||
// printf("the file is called: ");
|
|
||||||
// println(file->getFileName().c_str());
|
|
||||||
|
|
||||||
// So here we turn this mangled disaster into a C string.
|
// So here we turn this mangled disaster into a C string.
|
||||||
|
// Please consider this the equivalent of duct taping a chainsaw onto a car to cut your lawn.
|
||||||
|
|
||||||
// auto buffer = std::make_unique<char[]>(file->getSize());
|
// auto buffer = std::make_unique<char[]>(file->getSize());
|
||||||
char* buffer = new char[file->getSize()];
|
char* buffer = new char[file->getSize()];
|
||||||
|
Reference in New Issue
Block a user