Duplicate FaceCameraMode in Text3D.pkg to avoid crash with bindings. Closes #484.

This commit is contained in:
Lasse Öörni 2014-10-10 22:28:50 +03:00
parent 366d3e4c8c
commit 3b1d415c70

View File

@ -1,5 +1,15 @@
$#include "Text3D.h"
// Duplicated here from GraphicsDefs.pkg to so that enum is bound correctly to Text3D
enum FaceCameraMode
{
FC_NONE = 0,
FC_ROTATE_XYZ,
FC_ROTATE_Y,
FC_LOOKAT_XYZ,
FC_LOOKAT_Y
};
class Text3D : public Drawable
{
Text3D();