mirror of
https://github.com/lubosz/overte.git
synced 2025-04-16 09:29:16 +02:00
CR
This commit is contained in:
parent
ae83dfe041
commit
3e71c4cc4e
6 changed files with 3 additions and 14 deletions
|
@ -31,8 +31,6 @@ class ReadBitstreamToTreeParams;
|
|||
|
||||
class AnimationPropertyGroup : public PropertyGroup {
|
||||
public:
|
||||
AnimationPropertyGroup() = default;
|
||||
virtual ~AnimationPropertyGroup() = default;
|
||||
void associateWithAnimationLoop(AnimationLoop* animationLoop) { _animationLoop = animationLoop; }
|
||||
|
||||
// EntityItemProperty related helpers
|
||||
|
|
|
@ -49,9 +49,6 @@ class ReadBitstreamToTreeParams;
|
|||
|
||||
class AtmospherePropertyGroup : public PropertyGroup {
|
||||
public:
|
||||
AtmospherePropertyGroup() = default;
|
||||
virtual ~AtmospherePropertyGroup() = default;
|
||||
|
||||
// EntityItemProperty related helpers
|
||||
virtual void copyToScriptValue(const EntityPropertyFlags& desiredProperties, QScriptValue& properties, QScriptEngine* engine, bool skipDefaults, EntityItemProperties& defaultEntityProperties) const;
|
||||
virtual void copyFromScriptValue(const QScriptValue& object, bool& _defaultSettings);
|
||||
|
|
|
@ -51,8 +51,7 @@ class ReadBitstreamToTreeParams;
|
|||
|
||||
class PropertyGroup {
|
||||
public:
|
||||
PropertyGroup() {}
|
||||
virtual ~PropertyGroup() {}
|
||||
virtual ~PropertyGroup() = default;
|
||||
|
||||
// EntityItemProperty related helpers
|
||||
virtual void copyToScriptValue(const EntityPropertyFlags& desiredProperties, QScriptValue& properties, QScriptEngine* engine, bool skipDefaults, EntityItemProperties& defaultEntityProperties) const = 0;
|
||||
|
|
|
@ -29,9 +29,6 @@ class ReadBitstreamToTreeParams;
|
|||
|
||||
class SkyboxPropertyGroup : public PropertyGroup {
|
||||
public:
|
||||
SkyboxPropertyGroup() = default;
|
||||
virtual ~SkyboxPropertyGroup() = default;
|
||||
|
||||
// EntityItemProperty related helpers
|
||||
virtual void copyToScriptValue(const EntityPropertyFlags& desiredProperties, QScriptValue& properties, QScriptEngine* engine, bool skipDefaults, EntityItemProperties& defaultEntityProperties) const;
|
||||
virtual void copyFromScriptValue(const QScriptValue& object, bool& _defaultSettings);
|
||||
|
|
|
@ -29,9 +29,6 @@ class ReadBitstreamToTreeParams;
|
|||
|
||||
class StagePropertyGroup : public PropertyGroup {
|
||||
public:
|
||||
StagePropertyGroup() = default;
|
||||
virtual ~StagePropertyGroup() = default;
|
||||
|
||||
// EntityItemProperty related helpers
|
||||
virtual void copyToScriptValue(const EntityPropertyFlags& desiredProperties, QScriptValue& properties, QScriptEngine* engine, bool skipDefaults, EntityItemProperties& defaultEntityProperties) const;
|
||||
virtual void copyFromScriptValue(const QScriptValue& object, bool& _defaultSettings);
|
||||
|
|
|
@ -16,9 +16,10 @@
|
|||
#include <QDir>
|
||||
#include <ByteCountCoding.h>
|
||||
|
||||
#include <PathUtils.h>
|
||||
#include <BoxEntityItem.h>
|
||||
#include <EntityItemProperties.h>
|
||||
#include <Octree.h>
|
||||
#include <PathUtils.h>
|
||||
|
||||
const QString& getTestResourceDir() {
|
||||
static QString dir;
|
||||
|
|
Loading…
Reference in a new issue