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. --- ..._1_1scene_1_1_i_scene_user_data_serializer.html | 236 +++++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_scene_user_data_serializer.html (limited to 'src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_scene_user_data_serializer.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_scene_user_data_serializer.html b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_scene_user_data_serializer.html new file mode 100644 index 0000000..5a81d9b --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1scene_1_1_i_scene_user_data_serializer.html @@ -0,0 +1,236 @@ + + + + +Irrlicht 3D Engine: irr::scene::ISceneUserDataSerializer Class Reference + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+ +
+
irr::scene::ISceneUserDataSerializer Class Reference
+
+
+ +

Interface to read and write user data to and from .irr files. + More...

+ +

#include <ISceneUserDataSerializer.h>

+ +

List of all members.

+

+Public Member Functions

+ +

Detailed Description

+

Interface to read and write user data to and from .irr files.

+

This interface is to be implemented by the user, to make it possible to read and write user data when reading or writing .irr files via ISceneManager. To be used with ISceneManager::loadScene() and ISceneManager::saveScene()

+ +

Definition at line 24 of file ISceneUserDataSerializer.h.

+

Constructor & Destructor Documentation

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

Definition at line 28 of file ISceneUserDataSerializer.h.

+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
virtual io::IAttributes* irr::scene::ISceneUserDataSerializer::createUserData (ISceneNodeforSceneNode) [pure virtual]
+
+
+ +

Called when the scene manager is writing a scene node to an xml file for example.

+

Implement this method and return a list of attributes containing the user data you want to be saved together with the scene node. Return 0 if no user data should be added. Please note that the scene manager will call drop() to the returned pointer after it no longer needs it, so if you didn't create a new object for the return value and returning a longer existing IAttributes object, simply call grab() before returning it.

+ +
+
+ +
+
+ + + + + + + + +
virtual void irr::scene::ISceneUserDataSerializer::OnCreateNode (ISceneNodenode) [pure virtual]
+
+
+ +

Called when the scene manager create a scene node while loading a file.

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
virtual void irr::scene::ISceneUserDataSerializer::OnReadUserData (ISceneNodeforSceneNode,
io::IAttributesuserData 
) [pure virtual]
+
+
+ +

Called when the scene manager read a scene node while loading a file.

+

The userData pointer contains a list of attributes with userData which were attached to the scene node in the read scene file.

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + + -- cgit v1.1