mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 16:38:27 +02:00
Fix emun placement
This commit is contained in:
parent
d3ae7cf5cf
commit
cbef6e546f
1 changed files with 4 additions and 4 deletions
|
@ -93,8 +93,11 @@ enum EntityPropertyList {
|
||||||
PROP_LOCAL_GRAVITY,
|
PROP_LOCAL_GRAVITY,
|
||||||
PROP_PARTICLE_RADIUS,
|
PROP_PARTICLE_RADIUS,
|
||||||
|
|
||||||
|
// used by Model entities
|
||||||
|
PROP_ATTRIBUTION,
|
||||||
|
|
||||||
// NOTE: add new properties ABOVE this line and then modify PROP_LAST_ITEM below
|
// NOTE: add new properties ABOVE this line and then modify PROP_LAST_ITEM below
|
||||||
PROP_LAST_ITEM = PROP_PARTICLE_RADIUS,
|
PROP_LAST_ITEM = PROP_ATTRIBUTION,
|
||||||
|
|
||||||
// These properties of TextEntity piggy back off of properties of ModelEntities, the type doesn't matter
|
// These properties of TextEntity piggy back off of properties of ModelEntities, the type doesn't matter
|
||||||
// since the derived class knows how to interpret it's own properties and knows the types it expects
|
// since the derived class knows how to interpret it's own properties and knows the types it expects
|
||||||
|
@ -103,9 +106,6 @@ enum EntityPropertyList {
|
||||||
PROP_LINE_HEIGHT = PROP_ANIMATION_URL,
|
PROP_LINE_HEIGHT = PROP_ANIMATION_URL,
|
||||||
PROP_BACKGROUND_COLOR = PROP_ANIMATION_FPS,
|
PROP_BACKGROUND_COLOR = PROP_ANIMATION_FPS,
|
||||||
PROP_COLLISION_MODEL_URL,
|
PROP_COLLISION_MODEL_URL,
|
||||||
|
|
||||||
// used by Model entities
|
|
||||||
PROP_ATTRIBUTION
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef PropertyFlags<EntityPropertyList> EntityPropertyFlags;
|
typedef PropertyFlags<EntityPropertyList> EntityPropertyFlags;
|
||||||
|
|
Loading…
Reference in a new issue