summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterpathfindingconsole.h
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2011-12-19 17:49:47 -0800
committerTodd Stinson <stinson@lindenlab.com>2011-12-19 17:49:47 -0800
commit32fe974ac272ac5f92dd4c5c84e482b0acb36fe2 (patch)
treef096dba36cb03185f33a215246c2a79b72c92caf /indra/newview/llfloaterpathfindingconsole.h
parent34a847fabdfb42c7a6cf555c10fed095c6d8b2f2 (diff)
Stubbing out functionality for catching the terrain material properties changes.
Diffstat (limited to 'indra/newview/llfloaterpathfindingconsole.h')
-rw-r--r--indra/newview/llfloaterpathfindingconsole.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.h b/indra/newview/llfloaterpathfindingconsole.h
index e0dd796ef6..1ba9f2a6ee 100644
--- a/indra/newview/llfloaterpathfindingconsole.h
+++ b/indra/newview/llfloaterpathfindingconsole.h
@@ -35,6 +35,7 @@ class LLSD;
class LLCheckBoxCtrl;
class LLRadioGroup;
class LLSliderCtrl;
+class LLLineEditor;
class LLFloaterPathfindingConsole
: public LLFloater
@@ -86,11 +87,19 @@ private:
void onViewEditLinksetClicked();
void onRebuildNavmeshClicked();
void onRefreshNavmeshClicked();
+ void onTerrainMaterialASet();
+ void onTerrainMaterialBSet();
+ void onTerrainMaterialCSet();
+ void onTerrainMaterialDSet();
ERegionOverlayDisplay getRegionOverlayDisplay() const;
EPathSelectionState getPathSelectionState() const;
F32 getCharacterWidth() const;
ECharacterType getCharacterType() const;
+ F32 getTerrainMaterialA() const;
+ F32 getTerrainMaterialB() const;
+ F32 getTerrainMaterialC() const;
+ F32 getTerrainMaterialD() const;
LLCheckBoxCtrl *mShowNavmeshCheckBox;
LLCheckBoxCtrl *mShowExcludeVolumesCheckBox;
@@ -100,6 +109,10 @@ private:
LLRadioGroup *mPathSelectionRadioGroup;
LLSliderCtrl *mCharacterWidthSlider;
LLRadioGroup *mCharacterTypeRadioGroup;
+ LLLineEditor *mTerrainMaterialA;
+ LLLineEditor *mTerrainMaterialB;
+ LLLineEditor *mTerrainMaterialC;
+ LLLineEditor *mTerrainMaterialD;
LLNavMeshDownloadObserver mNavmeshDownloadObserver;
};