From 7028cbe09c688437910a25623098762bf0fa592d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:28:34 +1000 Subject: Move Irrlicht to src/others. --- .../html/classirr_1_1scene_1_1_i_mesh_loader.html | 232 +++++++++++++++++++++ 1 file changed, 232 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_mesh_loader.html (limited to 'src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_mesh_loader.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_mesh_loader.html b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_mesh_loader.html new file mode 100644 index 0000000..45c6f93 --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_mesh_loader.html @@ -0,0 +1,232 @@ + + + + +Irrlicht 3D Engine: irr::scene::IMeshLoader Class Reference + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+ +
+
irr::scene::IMeshLoader Class Reference
+
+
+ +

Class which is able to load an animated mesh from a file. + More...

+ +

#include <IMeshLoader.h>

+
+ + Inheritance diagram for irr::scene::IMeshLoader:
+
+
+ + +

List of all members.

+

+Public Member Functions

+ +

Detailed Description

+

Class which is able to load an animated mesh from a file.

+

If you want Irrlicht be able to load meshes of currently unsupported file formats (e.g. .cob), then implement this and add your new Meshloader with ISceneManager::addExternalMeshLoader() to the engine.

+ +

Definition at line 26 of file IMeshLoader.h.

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + +
virtual irr::scene::IMeshLoader::~IMeshLoader () [inline, virtual]
+
+
+ +

Destructor.

+ +

Definition at line 31 of file IMeshLoader.h.

+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
virtual IAnimatedMesh* irr::scene::IMeshLoader::createMesh (io::IReadFilefile) [pure virtual]
+
+
+ +

Creates/loads an animated mesh from the file.

+
Parameters:
+ + +
fileFile handler to load the file from.
+
+
+
Returns:
Pointer to the created mesh. Returns 0 if loading failed. If you no longer need the mesh, you should call IAnimatedMesh::drop(). See IReferenceCounted::drop() for more information.
+ +
+
+ +
+
+ + + + + + + + +
virtual bool irr::scene::IMeshLoader::isALoadableFileExtension (const io::pathfilename) const [pure virtual]
+
+
+ +

Returns true if the file might be loaded by this class.

+

This decision should be based on the file extension (e.g. ".cob") only.

+
Parameters:
+ + +
filenameName of the file to test.
+
+
+
Returns:
True if the file might be loaded by this class.
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + + -- cgit v1.1