TDME2 1.9.121
Prototype_Type.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7#include <tdme/math/Vector3.h>
9
10using std::string;
11
15
16/**
17 * Prototype type enum
18 * @author Andreas Drewke
19 */
21private:
26
27public:
34
35 /**
36 * Public constructor
37 * @param name name
38 * @param ordinal ordinal
39 * @param boundingVolumeCount bounding volume count or -1 for default
40 * @param gizmoTypeMask gizmo type mask, see Gizmo::GIZMO_TYPE
41 * @param nonEditScaleDownMode non edit scale down mode
42 * @param nonEditScaleDownModeDimension non edit scale down mode dimension
43 */
45
46 /**
47 * @return bounding volume count
48 */
51 }
52
53 /**
54 * @return gizmo types
55 */
56 inline int32_t getGizmoTypeMask() {
57 return gizmoTypeMask;
58 }
59
60 /**
61 * @return has non edit scale down mode
62 */
65 }
66
67 /**
68 * @return has non edit scale down mode
69 */
72 }
73
74 /**
75 * Returns enum object given by name
76 * @param name name
77 * @return enum object
78 */
79 static Prototype_Type* valueOf(const string& name);
80
81};
static STATIC_DLL_IMPEXT Prototype_Type * ENVIRONMENTMAPPING
static STATIC_DLL_IMPEXT Prototype_Type * MODEL
static Prototype_Type * valueOf(const string &name)
Returns enum object given by name.
const Vector3 & getNonEditScaleDownModeDimension()
static STATIC_DLL_IMPEXT Prototype_Type * TERRAIN
Prototype_Type(const string &name, int ordinal, int boundingVolumeCount, int gizmoTypeMask, bool nonEditScaleDownMode, const Vector3 &nonEditScaleDownModeDimension)
Public constructor.
static STATIC_DLL_IMPEXT Prototype_Type * PARTICLESYSTEM
static STATIC_DLL_IMPEXT Prototype_Type * TRIGGER
static STATIC_DLL_IMPEXT Prototype_Type * EMPTY
3D vector 3 class
Definition: Vector3.h:22
Enum base class.
Definition: Enum.h:14
int32_t ordinal
Definition: Enum.h:17
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11