r33039 added dependency to COLLADA for blenderplayer, but it's really not needed there.

Stubbing for now.
This commit is contained in:
Nathan Letwory 2010-11-14 20:40:55 +00:00
parent f4912b933e
commit 1994fc80ed
2 changed files with 6 additions and 0 deletions

@ -77,6 +77,8 @@ static void rna_SceneRender_get_frame_path(RenderData *rd, int frame, char *name
static void rna_Scene_collada_export(Scene *scene, char *filepath)
{
/* XXX not really nice, as this will bring essentially in COLLADA as dependency for
* blenderplayer. For now stubbing in blc. */
collada_export(scene, filepath);
}

@ -372,6 +372,10 @@ char *WM_operator_pystring(struct bContext *C, struct wmOperatorType *ot, struct
struct wmKeyMapItem *WM_modalkeymap_add_item(struct wmKeyMap *km, int type, int val, int modifier, int keymodifier, int value){return (struct wmKeyMapItem *)NULL;}
struct wmKeyMap *WM_modalkeymap_add(struct wmKeyConfig *keyconf, char *idname, EnumPropertyItem *items){return (struct wmKeyMap *) NULL;}
/* RNA Collada dependency */
int collada_export(struct Scene *sce, const char *filepath){return 0;}
/* intern/decimation */
int LOD_FreeDecimationData(struct LOD_Decimation_Info *info){return 0;}
int LOD_CollapseEdge(struct LOD_Decimation_Info *info){return 0;}