Fix blenderplayer and collada build.

This commit is contained in:
Brecht Van Lommel 2018-04-17 10:58:27 +02:00
parent c9d1082a2c
commit ad797ed39a
4 changed files with 7 additions and 3 deletions

View File

@ -91,8 +91,8 @@ private:
public:
AnimationExporter(Depsgraph *depsgraph, COLLADASW::StreamWriter *sw, const ExportSettings *export_settings):
depsgraph(depsgraph),
COLLADASW::LibraryAnimations(sw),
depsgraph(depsgraph),
export_settings(export_settings)
{
this->sw = sw;

View File

@ -44,8 +44,8 @@ class DocumentExporter
void exportScenes(const char *filename);
private:
const ExportSettings *export_settings;
Depsgraph *depsgraph;
const ExportSettings *export_settings;
};
#endif

View File

@ -26,8 +26,10 @@
*/
#include "BKE_object.h"
#include "BLI_math.h"
#include "BLI_sys_types.h"
#include "BKE_object.h"
#include "TransformWriter.h"

View File

@ -484,6 +484,8 @@ void ED_fsmenu_entry_set_name(struct FSMenuEntry *fsentry, const char *name) RET
struct PTCacheEdit *PE_get_current(struct Scene *scene, struct Object *ob) RET_NULL
void PE_current_changed(struct Depsgraph *depsgraph, struct Scene *scene, struct Object *ob) RET_NONE
struct PTCacheEdit *PE_create_current(struct Depsgraph *depsgraph, struct Scene *scene, struct Object *ob) RET_NULL
void PE_update_object( struct Depsgraph *depsgraph, struct Scene *scene, struct Object *ob, int useflag) RET_NONE
/* rna keymap */
struct wmKeyMap *WM_keymap_active(struct wmWindowManager *wm, struct wmKeyMap *keymap) RET_NULL