Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-03-27 13:46:20 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2011-03-27 13:46:20 +0400
commit3cb6f52eec3beae54adcec64e1213995dfac0423 (patch)
tree48ec2c77056006a41e9e61a859f54c327331f864 /source/blender/collada/LightExporter.h
parent4ec9d47de3797ab88e022682f2b9bc2a24bcee45 (diff)
Add blender light profile.
Diffstat (limited to 'source/blender/collada/LightExporter.h')
-rw-r--r--source/blender/collada/LightExporter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/collada/LightExporter.h b/source/blender/collada/LightExporter.h
index 685a50ff17e..3706582e52c 100644
--- a/source/blender/collada/LightExporter.h
+++ b/source/blender/collada/LightExporter.h
@@ -33,6 +33,7 @@
#include "COLLADASWStreamWriter.h"
#include "COLLADASWLibraryLights.h"
+#include "DNA_lamp_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
@@ -42,6 +43,8 @@ public:
LightsExporter(COLLADASW::StreamWriter *sw);
void exportLights(Scene *sce);
void operator()(Object *ob);
+private:
+ bool exportBlenderProfile(COLLADASW::Light &cla, Lamp *la);
};
#endif