Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Ketsji/KX_Scene.h')
-rw-r--r--source/gameengine/Ketsji/KX_Scene.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/gameengine/Ketsji/KX_Scene.h b/source/gameengine/Ketsji/KX_Scene.h
index 19873daabb3..a031be78e92 100644
--- a/source/gameengine/Ketsji/KX_Scene.h
+++ b/source/gameengine/Ketsji/KX_Scene.h
@@ -296,9 +296,10 @@ protected:
KX_ObstacleSimulation* m_obstacleSimulation;
/**
- * Does this scene active the LoD Hysteresis?
+ * LOD Hysteresis settings
*/
bool m_isActivedHysteresis;
+ int m_lodHysteresisValue;
public:
KX_Scene(class SCA_IInputDevice* keyboarddevice,
@@ -552,9 +553,11 @@ public:
// Update the mesh for objects based on level of detail settings
void UpdateObjectLods(void);
- // Enable/disable LoD Hysteresis
+ // LoD Hysteresis functions
void SetLodHysteresis(bool active);
bool IsActivedLodHysteresis();
+ void SetLodHysteresisValue(int hysteresisvalue);
+ int GetLodHysteresisValue();
// Update the activity box settings for objects in this scene, if needed.
void UpdateObjectActivity(void);