diff options
-rw-r--r-- | linden/indra/newview/app_settings/logcontrol.xml | 1 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterwater.cpp | 118 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterwater.h | 5 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterwindlight.cpp | 116 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterwindlight.h | 5 | ||||
-rw-r--r-- | linden/indra/newview/skins/default/xui/en-us/floater_water.xml | 24 | ||||
-rw-r--r-- | linden/indra/newview/skins/default/xui/en-us/floater_windlight_options.xml | 466 |
7 files changed, 361 insertions, 374 deletions
diff --git a/linden/indra/newview/app_settings/logcontrol.xml b/linden/indra/newview/app_settings/logcontrol.xml index 4d3288f..4e0b582 100644 --- a/linden/indra/newview/app_settings/logcontrol.xml +++ b/linden/indra/newview/app_settings/logcontrol.xml | |||
@@ -77,6 +77,7 @@ | |||
77 | <!--<string>Voice</string>--> | 77 | <!--<string>Voice</string>--> |
78 | <!--<string>VivoxProtocolParser</string>--> | 78 | <!--<string>VivoxProtocolParser</string>--> |
79 | <!--<string>Wearable</string>--> | 79 | <!--<string>Wearable</string>--> |
80 | <!--<string>WindLight</string>--> | ||
80 | 81 | ||
81 | <!--<string>XMLNode</string>--> | 82 | <!--<string>XMLNode</string>--> |
82 | 83 | ||
diff --git a/linden/indra/newview/llfloaterwater.cpp b/linden/indra/newview/llfloaterwater.cpp index f08beea..05bc001 100644 --- a/linden/indra/newview/llfloaterwater.cpp +++ b/linden/indra/newview/llfloaterwater.cpp | |||
@@ -160,9 +160,8 @@ void LLFloaterWater::initCallbacks(void) { | |||
160 | 160 | ||
161 | //childSetAction("WaterLoadPreset", onLoadPreset, comboBox); | 161 | //childSetAction("WaterLoadPreset", onLoadPreset, comboBox); |
162 | childSetAction("WaterNewPreset", onNewPreset, comboBox); | 162 | childSetAction("WaterNewPreset", onNewPreset, comboBox); |
163 | childSetAction("WaterSavePreset", onSavePreset, comboBox); | ||
164 | childSetAction("WaterSaveNotecard", onSaveNotecard, comboBox); | ||
165 | childSetAction("WaterDeletePreset", onDeletePreset, comboBox); | 163 | childSetAction("WaterDeletePreset", onDeletePreset, comboBox); |
164 | childSetCommitCallback("WaterSavePreset", onSavePreset, this); | ||
166 | 165 | ||
167 | // wave direction | 166 | // wave direction |
168 | childSetCommitCallback("WaterWave1DirX", onVector2ControlXMoved, ¶m_mgr->mWave1Dir); | 167 | childSetCommitCallback("WaterWave1DirX", onVector2ControlXMoved, ¶m_mgr->mWave1Dir); |
@@ -623,39 +622,23 @@ void LLFloaterWater::onNewPreset(void* userData) | |||
623 | LLNotifications::instance().add("NewWaterPreset", LLSD(), LLSD(), newPromptCallback); | 622 | LLNotifications::instance().add("NewWaterPreset", LLSD(), LLSD(), newPromptCallback); |
624 | } | 623 | } |
625 | 624 | ||
626 | void LLFloaterWater::onSavePreset(void* userData) | ||
627 | { | ||
628 | // get the name | ||
629 | LLComboBox* comboBox = sWaterMenu->getChild<LLComboBox>("WaterPresetsCombo"); | ||
630 | |||
631 | // don't save the empty name | ||
632 | if(comboBox->getSelectedItemLabel() == "") | ||
633 | { | ||
634 | return; | ||
635 | } | ||
636 | |||
637 | LLWaterParamManager::instance()->mCurParams.mName = | ||
638 | comboBox->getSelectedItemLabel(); | ||
639 | |||
640 | // check to see if it's a default and shouldn't be overwritten | ||
641 | std::set<std::string>::iterator sIt = sDefaultPresets.find( | ||
642 | comboBox->getSelectedItemLabel()); | ||
643 | if(sIt != sDefaultPresets.end() && !gSavedSettings.getBOOL("WaterEditPresets")) | ||
644 | { | ||
645 | LLNotifications::instance().add("WLNoEditDefault"); | ||
646 | return; | ||
647 | } | ||
648 | |||
649 | LLNotifications::instance().add("WLSavePresetAlert", LLSD(), LLSD(), saveAlertCallback); | ||
650 | } | ||
651 | |||
652 | class KVFloaterWaterNotecardCreatedCallback : public LLInventoryCallback | 625 | class KVFloaterWaterNotecardCreatedCallback : public LLInventoryCallback |
653 | { | 626 | { |
654 | public: | 627 | public: |
655 | void fire(const LLUUID& inv_item); | 628 | void fire(const LLUUID& inv_item); |
656 | }; | 629 | }; |
657 | 630 | ||
658 | void LLFloaterWater::onSaveNotecard(void* userData) | 631 | void KVFloaterWaterNotecardCreatedCallback::fire(const LLUUID& inv_item) |
632 | { | ||
633 | LLWaterParamManager * param_mgr = LLWaterParamManager::instance(); | ||
634 | param_mgr->setParamSet(param_mgr->mCurParams.mName, param_mgr->mCurParams); | ||
635 | param_mgr->mParamList[param_mgr->mCurParams.mName].mInventoryID = inv_item; | ||
636 | param_mgr->mCurParams.mInventoryID = inv_item; | ||
637 | LL_INFOS("WindLight") << "Created inventory item " << inv_item << LL_ENDL; | ||
638 | param_mgr->savePresetToNotecard(param_mgr->mCurParams.mName); | ||
639 | } | ||
640 | |||
641 | void LLFloaterWater::onSavePreset(LLUICtrl* ctrl, void* userData) | ||
659 | { | 642 | { |
660 | // get the name | 643 | // get the name |
661 | LLComboBox* comboBox = sWaterMenu->getChild<LLComboBox>("WaterPresetsCombo"); | 644 | LLComboBox* comboBox = sWaterMenu->getChild<LLComboBox>("WaterPresetsCombo"); |
@@ -665,47 +648,56 @@ void LLFloaterWater::onSaveNotecard(void* userData) | |||
665 | { | 648 | { |
666 | return; | 649 | return; |
667 | } | 650 | } |
668 | 651 | ||
669 | // Check if this is already a notecard. | 652 | if (ctrl->getValue().asString() == "save_disk_item") |
670 | if(LLWaterParamManager::instance()->mCurParams.mInventoryID.notNull()) | ||
671 | { | 653 | { |
672 | LLNotifications::instance().add("KittyWLSaveNotecardAlert", LLSD(), LLSD(), saveNotecardCallback); | 654 | LLWaterParamManager::instance()->mCurParams.mName = |
655 | comboBox->getSelectedItemLabel(); | ||
656 | |||
657 | // check to see if it's a default and shouldn't be overwritten | ||
658 | std::set<std::string>::iterator sIt = sDefaultPresets.find( | ||
659 | comboBox->getSelectedItemLabel()); | ||
660 | if(sIt != sDefaultPresets.end() && !gSavedSettings.getBOOL("WaterEditPresets")) | ||
661 | { | ||
662 | LLNotifications::instance().add("WLNoEditDefault"); | ||
663 | return; | ||
664 | } | ||
665 | |||
666 | LLNotifications::instance().add("WLSavePresetAlert", LLSD(), LLSD(), saveAlertCallback); | ||
673 | } | 667 | } |
674 | else | 668 | else if (ctrl->getValue().asString() == "save_inventory_item") |
675 | { | 669 | { |
676 | // Make sure we have a ".ww" extension. | 670 | // Check if this is already a notecard. |
677 | std::string name = comboBox->getSelectedItemLabel(); | 671 | if(LLWaterParamManager::instance()->mCurParams.mInventoryID.notNull()) |
678 | if(name.length() > 2 && name.compare(name.length() - 3, 3, ".ww") != 0) | ||
679 | { | 672 | { |
680 | name += ".ww"; | 673 | LLNotifications::instance().add("KittyWLSaveNotecardAlert", LLSD(), LLSD(), saveNotecardCallback); |
674 | } | ||
675 | else | ||
676 | { | ||
677 | // Make sure we have a ".ww" extension. | ||
678 | std::string name = comboBox->getSelectedItemLabel(); | ||
679 | if(name.length() > 2 && name.compare(name.length() - 3, 3, ".ww") != 0) | ||
680 | { | ||
681 | name += ".ww"; | ||
682 | } | ||
683 | LLPointer<KVFloaterWaterNotecardCreatedCallback> cb = new KVFloaterWaterNotecardCreatedCallback(); | ||
684 | // Create a notecard and then save it. | ||
685 | create_inventory_item(gAgent.getID(), | ||
686 | gAgent.getSessionID(), | ||
687 | LLUUID::null, | ||
688 | LLTransactionID::tnull, | ||
689 | name, | ||
690 | "Water settings (Imprudence compatible)", | ||
691 | LLAssetType::AT_NOTECARD, | ||
692 | LLInventoryType::IT_NOTECARD, | ||
693 | NOT_WEARABLE, | ||
694 | PERM_ITEM_UNRESTRICTED, | ||
695 | cb); | ||
696 | |||
681 | } | 697 | } |
682 | LLPointer<KVFloaterWaterNotecardCreatedCallback> cb = new KVFloaterWaterNotecardCreatedCallback(); | ||
683 | // Create a notecard and then save it. | ||
684 | create_inventory_item(gAgent.getID(), | ||
685 | gAgent.getSessionID(), | ||
686 | LLUUID::null, | ||
687 | LLTransactionID::tnull, | ||
688 | name, | ||
689 | "Water settings (Kitty Viewer compatible)", | ||
690 | LLAssetType::AT_NOTECARD, | ||
691 | LLInventoryType::IT_NOTECARD, | ||
692 | NOT_WEARABLE, | ||
693 | PERM_ITEM_UNRESTRICTED, | ||
694 | cb); | ||
695 | |||
696 | } | 698 | } |
697 | } | 699 | } |
698 | 700 | ||
699 | void KVFloaterWaterNotecardCreatedCallback::fire(const LLUUID& inv_item) | ||
700 | { | ||
701 | LLWaterParamManager * param_mgr = LLWaterParamManager::instance(); | ||
702 | param_mgr->setParamSet(param_mgr->mCurParams.mName, param_mgr->mCurParams); | ||
703 | param_mgr->mParamList[param_mgr->mCurParams.mName].mInventoryID = inv_item; | ||
704 | param_mgr->mCurParams.mInventoryID = inv_item; | ||
705 | LL_INFOS("WindLight") << "Created inventory item " << inv_item << LL_ENDL; | ||
706 | param_mgr->savePresetToNotecard(param_mgr->mCurParams.mName); | ||
707 | } | ||
708 | |||
709 | bool LLFloaterWater::saveNotecardCallback(const LLSD& notification, const LLSD& response) | 701 | bool LLFloaterWater::saveNotecardCallback(const LLSD& notification, const LLSD& response) |
710 | { | 702 | { |
711 | S32 option = LLNotification::getSelectedOption(notification, response); | 703 | S32 option = LLNotification::getSelectedOption(notification, response); |
diff --git a/linden/indra/newview/llfloaterwater.h b/linden/indra/newview/llfloaterwater.h index 0a47627..cd9eb13 100644 --- a/linden/indra/newview/llfloaterwater.h +++ b/linden/indra/newview/llfloaterwater.h | |||
@@ -95,10 +95,7 @@ public: | |||
95 | static void onNewPreset(void* userData); | 95 | static void onNewPreset(void* userData); |
96 | 96 | ||
97 | /// when user hits the save preset button | 97 | /// when user hits the save preset button |
98 | static void onSavePreset(void* userData); | 98 | static void onSavePreset(LLUICtrl* ctrl, void* userData); |
99 | |||
100 | /// when user hits the save to inventory button | ||
101 | static void onSaveNotecard(void* userData); | ||
102 | 99 | ||
103 | /// prompts a user when overwriting a preset notecard | 100 | /// prompts a user when overwriting a preset notecard |
104 | static bool saveNotecardCallback(const LLSD& notification, const LLSD& response); | 101 | static bool saveNotecardCallback(const LLSD& notification, const LLSD& response); |
diff --git a/linden/indra/newview/llfloaterwindlight.cpp b/linden/indra/newview/llfloaterwindlight.cpp index 8cdc634..ae94d3a 100644 --- a/linden/indra/newview/llfloaterwindlight.cpp +++ b/linden/indra/newview/llfloaterwindlight.cpp | |||
@@ -225,9 +225,8 @@ void LLFloaterWindLight::initCallbacks(void) { | |||
225 | 225 | ||
226 | //childSetAction("WLLoadPreset", onLoadPreset, comboBox); | 226 | //childSetAction("WLLoadPreset", onLoadPreset, comboBox); |
227 | childSetAction("WLNewPreset", onNewPreset, comboBox); | 227 | childSetAction("WLNewPreset", onNewPreset, comboBox); |
228 | childSetAction("WLSavePreset", onSavePreset, comboBox); | ||
229 | childSetAction("WLSaveNotecard", onSaveNotecard, comboBox); | ||
230 | childSetAction("WLDeletePreset", onDeletePreset, comboBox); | 228 | childSetAction("WLDeletePreset", onDeletePreset, comboBox); |
229 | childSetCommitCallback("WLSavePreset", onSavePreset, this); | ||
231 | 230 | ||
232 | comboBox->setCommitCallback(onChangePresetName); | 231 | comboBox->setCommitCallback(onChangePresetName); |
233 | 232 | ||
@@ -816,39 +815,23 @@ void LLFloaterWindLight::onNewPreset(void* userData) | |||
816 | LLNotifications::instance().add("NewSkyPreset", LLSD(), LLSD(), newPromptCallback); | 815 | LLNotifications::instance().add("NewSkyPreset", LLSD(), LLSD(), newPromptCallback); |
817 | } | 816 | } |
818 | 817 | ||
819 | void LLFloaterWindLight::onSavePreset(void* userData) | ||
820 | { | ||
821 | // get the name | ||
822 | LLComboBox* comboBox = sWindLight->getChild<LLComboBox>( | ||
823 | "WLPresetsCombo"); | ||
824 | |||
825 | // don't save the empty name | ||
826 | if(comboBox->getSelectedItemLabel() == "") | ||
827 | { | ||
828 | return; | ||
829 | } | ||
830 | |||
831 | // check to see if it's a default and shouldn't be overwritten | ||
832 | std::set<std::string>::iterator sIt = sDefaultPresets.find( | ||
833 | comboBox->getSelectedItemLabel()); | ||
834 | if(sIt != sDefaultPresets.end() && !gSavedSettings.getBOOL("SkyEditPresets")) | ||
835 | { | ||
836 | LLNotifications::instance().add("WLNoEditDefault"); | ||
837 | return; | ||
838 | } | ||
839 | |||
840 | LLWLParamManager::instance()->mCurParams.mName = | ||
841 | comboBox->getSelectedItemLabel(); | ||
842 | |||
843 | LLNotifications::instance().add("WLSavePresetAlert", LLSD(), LLSD(), saveAlertCallback); | ||
844 | } | ||
845 | class KVFloaterWindLightNotecardCreatedCallback : public LLInventoryCallback | 818 | class KVFloaterWindLightNotecardCreatedCallback : public LLInventoryCallback |
846 | { | 819 | { |
847 | public: | 820 | public: |
848 | void fire(const LLUUID& inv_item); | 821 | void fire(const LLUUID& inv_item); |
849 | }; | 822 | }; |
850 | 823 | ||
851 | void LLFloaterWindLight::onSaveNotecard(void* userData) | 824 | void KVFloaterWindLightNotecardCreatedCallback::fire(const LLUUID& inv_item) |
825 | { | ||
826 | LLWLParamManager * param_mgr = LLWLParamManager::instance(); | ||
827 | param_mgr->setParamSet(param_mgr->mCurParams.mName, param_mgr->mCurParams); | ||
828 | param_mgr->mParamList[param_mgr->mCurParams.mName].mInventoryID = inv_item; | ||
829 | param_mgr->mCurParams.mInventoryID = inv_item; | ||
830 | LL_INFOS("WindLight") << "Created inventory item " << inv_item << LL_ENDL; | ||
831 | param_mgr->savePresetToNotecard(param_mgr->mCurParams.mName); | ||
832 | } | ||
833 | |||
834 | void LLFloaterWindLight::onSavePreset(LLUICtrl* ctrl, void* userData) | ||
852 | { | 835 | { |
853 | // get the name | 836 | // get the name |
854 | LLComboBox* comboBox = sWindLight->getChild<LLComboBox>( | 837 | LLComboBox* comboBox = sWindLight->getChild<LLComboBox>( |
@@ -859,47 +842,56 @@ void LLFloaterWindLight::onSaveNotecard(void* userData) | |||
859 | { | 842 | { |
860 | return; | 843 | return; |
861 | } | 844 | } |
862 | 845 | ||
863 | // Check if this is already a notecard. | 846 | if (ctrl->getValue().asString() == "save_disk_item") |
864 | if(LLWLParamManager::instance()->mCurParams.mInventoryID.notNull()) | ||
865 | { | 847 | { |
866 | LLNotifications::instance().add("KittyWLSaveNotecardAlert", LLSD(), LLSD(), saveNotecardCallback); | 848 | // check to see if it's a default and shouldn't be overwritten |
849 | std::set<std::string>::iterator sIt = sDefaultPresets.find( | ||
850 | comboBox->getSelectedItemLabel()); | ||
851 | if(sIt != sDefaultPresets.end() && !gSavedSettings.getBOOL("SkyEditPresets")) | ||
852 | { | ||
853 | LLNotifications::instance().add("WLNoEditDefault"); | ||
854 | return; | ||
855 | } | ||
856 | |||
857 | LLWLParamManager::instance()->mCurParams.mName = | ||
858 | comboBox->getSelectedItemLabel(); | ||
859 | |||
860 | LLNotifications::instance().add("WLSavePresetAlert", LLSD(), LLSD(), saveAlertCallback); | ||
867 | } | 861 | } |
868 | else | 862 | else if (ctrl->getValue().asString() == "save_inventory_item") |
869 | { | 863 | { |
870 | // Make sure we have a ".wl" extension. | 864 | // Check if this is already a notecard. |
871 | std::string name = comboBox->getSelectedItemLabel(); | 865 | if(LLWLParamManager::instance()->mCurParams.mInventoryID.notNull()) |
872 | if(name.length() > 2 && name.compare(name.length() - 3, 3, ".wl") != 0) | ||
873 | { | 866 | { |
874 | name += ".wl"; | 867 | LLNotifications::instance().add("KittyWLSaveNotecardAlert", LLSD(), LLSD(), saveNotecardCallback); |
868 | } | ||
869 | else | ||
870 | { | ||
871 | // Make sure we have a ".wl" extension. | ||
872 | std::string name = comboBox->getSelectedItemLabel(); | ||
873 | if(name.length() > 2 && name.compare(name.length() - 3, 3, ".wl") != 0) | ||
874 | { | ||
875 | name += ".wl"; | ||
876 | } | ||
877 | LLPointer<KVFloaterWindLightNotecardCreatedCallback> cb = new KVFloaterWindLightNotecardCreatedCallback(); | ||
878 | // Create a notecard and then save it. | ||
879 | create_inventory_item(gAgent.getID(), | ||
880 | gAgent.getSessionID(), | ||
881 | LLUUID::null, | ||
882 | LLTransactionID::tnull, | ||
883 | name, | ||
884 | "WindLight settings (Imprudence compatible)", | ||
885 | LLAssetType::AT_NOTECARD, | ||
886 | LLInventoryType::IT_NOTECARD, | ||
887 | NOT_WEARABLE, | ||
888 | PERM_ITEM_UNRESTRICTED, | ||
889 | cb); | ||
890 | |||
875 | } | 891 | } |
876 | LLPointer<KVFloaterWindLightNotecardCreatedCallback> cb = new KVFloaterWindLightNotecardCreatedCallback(); | ||
877 | // Create a notecard and then save it. | ||
878 | create_inventory_item(gAgent.getID(), | ||
879 | gAgent.getSessionID(), | ||
880 | LLUUID::null, | ||
881 | LLTransactionID::tnull, | ||
882 | name, | ||
883 | "WindLight settings (Kitty Viewer compatible)", | ||
884 | LLAssetType::AT_NOTECARD, | ||
885 | LLInventoryType::IT_NOTECARD, | ||
886 | NOT_WEARABLE, | ||
887 | PERM_ITEM_UNRESTRICTED, | ||
888 | cb); | ||
889 | |||
890 | } | 892 | } |
891 | } | 893 | } |
892 | 894 | ||
893 | void KVFloaterWindLightNotecardCreatedCallback::fire(const LLUUID& inv_item) | ||
894 | { | ||
895 | LLWLParamManager * param_mgr = LLWLParamManager::instance(); | ||
896 | param_mgr->setParamSet(param_mgr->mCurParams.mName, param_mgr->mCurParams); | ||
897 | param_mgr->mParamList[param_mgr->mCurParams.mName].mInventoryID = inv_item; | ||
898 | param_mgr->mCurParams.mInventoryID = inv_item; | ||
899 | LL_INFOS("WindLight") << "Created inventory item " << inv_item << LL_ENDL; | ||
900 | param_mgr->savePresetToNotecard(param_mgr->mCurParams.mName); | ||
901 | } | ||
902 | |||
903 | bool LLFloaterWindLight::saveNotecardCallback(const LLSD& notification, const LLSD& response) | 895 | bool LLFloaterWindLight::saveNotecardCallback(const LLSD& notification, const LLSD& response) |
904 | { | 896 | { |
905 | S32 option = LLNotification::getSelectedOption(notification, response); | 897 | S32 option = LLNotification::getSelectedOption(notification, response); |
diff --git a/linden/indra/newview/llfloaterwindlight.h b/linden/indra/newview/llfloaterwindlight.h index 9656803..b9e5311 100644 --- a/linden/indra/newview/llfloaterwindlight.h +++ b/linden/indra/newview/llfloaterwindlight.h | |||
@@ -92,10 +92,7 @@ public: | |||
92 | static void onNewPreset(void* userData); | 92 | static void onNewPreset(void* userData); |
93 | 93 | ||
94 | /// when user hits the save to file button | 94 | /// when user hits the save to file button |
95 | static void onSavePreset(void* userData); | 95 | static void onSavePreset(LLUICtrl* ctrl, void* userData); |
96 | |||
97 | /// when user hits the save to inventory button | ||
98 | static void onSaveNotecard(void* userData); | ||
99 | 96 | ||
100 | /// prompts a user when overwriting a preset notecard | 97 | /// prompts a user when overwriting a preset notecard |
101 | static bool saveNotecardCallback(const LLSD& notification, const LLSD& response); | 98 | static bool saveNotecardCallback(const LLSD& notification, const LLSD& response); |
diff --git a/linden/indra/newview/skins/default/xui/en-us/floater_water.xml b/linden/indra/newview/skins/default/xui/en-us/floater_water.xml index fd0c131..441ce7b 100644 --- a/linden/indra/newview/skins/default/xui/en-us/floater_water.xml +++ b/linden/indra/newview/skins/default/xui/en-us/floater_water.xml | |||
@@ -21,17 +21,21 @@ | |||
21 | label="" label_selected="" left_delta="180" image_overlay="arrow_right.tga" | 21 | label="" label_selected="" left_delta="180" image_overlay="arrow_right.tga" |
22 | mouse_opaque="true" name="next" scale_image="true" width="20" /> | 22 | mouse_opaque="true" name="next" scale_image="true" width="20" /> |
23 | <button bottom="-53" enabled="true" font="SansSerif" halign="center" height="20" | 23 | <button bottom="-53" enabled="true" font="SansSerif" halign="center" height="20" |
24 | label="New" label_selected="New" left_delta="30" | 24 | label="New" right="-270" |
25 | mouse_opaque="true" name="WaterNewPreset" scale_image="true" width="50" /> | 25 | mouse_opaque="true" name="WaterNewPreset" scale_image="true" width="100" /> |
26 | <flyout_button bottom_delta="0" follows="left|top" height="20" label="Save to Disk" | ||
27 | right="-140" halign="center" list_position="above" enabled="true" | ||
28 | mouse_opaque="true" width="125" name="WaterSavePreset"> | ||
29 | <flyout_button_item value="save_inventory_item" name="save_inventory_item"> | ||
30 | Save to Inventory | ||
31 | </flyout_button_item> | ||
32 | <flyout_button_item value="save_disk_item" name="save_disk_item"> | ||
33 | Save to Disk | ||
34 | </flyout_button_item> | ||
35 | </flyout_button> | ||
26 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" | 36 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" |
27 | label="Save to Disk" label_selected="Save to Disk" left_delta="50" | 37 | label="Delete File" label_selected="Delete File" right="-10" |
28 | mouse_opaque="true" name="WaterSavePreset" scale_image="true" width="110" /> | 38 | mouse_opaque="true" name="WaterDeletePreset" scale_image="true" width="125" /> |
29 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" | ||
30 | label="Save to Inventory" label_selected="Save" left_delta="110" | ||
31 | mouse_opaque="true" name="WaterSaveNotecard" scale_image="true" width="110" /> | ||
32 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" | ||
33 | label="Delete File" label_selected="Delete File" left_delta="110" | ||
34 | mouse_opaque="true" name="WaterDeletePreset" scale_image="true" width="110" /> | ||
35 | <tab_container bottom="-240" follows="left|top" height="180" left="0" | 39 | <tab_container bottom="-240" follows="left|top" height="180" left="0" |
36 | mouse_opaque="false" name="Water Tabs" tab_position="top" width="700"> | 40 | mouse_opaque="false" name="Water Tabs" tab_position="top" width="700"> |
37 | <panel border="true" bottom="-240" follows="left|top|right|bottom" height="180" | 41 | <panel border="true" bottom="-240" follows="left|top|right|bottom" height="180" |
diff --git a/linden/indra/newview/skins/default/xui/en-us/floater_windlight_options.xml b/linden/indra/newview/skins/default/xui/en-us/floater_windlight_options.xml index 96ea829..4f5fc4a 100644 --- a/linden/indra/newview/skins/default/xui/en-us/floater_windlight_options.xml +++ b/linden/indra/newview/skins/default/xui/en-us/floater_windlight_options.xml | |||
@@ -21,581 +21,585 @@ | |||
21 | label="" label_selected="" left_delta="180" image_overlay="arrow_right.tga" | 21 | label="" label_selected="" left_delta="180" image_overlay="arrow_right.tga" |
22 | mouse_opaque="true" name="next" scale_image="true" width="20" /> | 22 | mouse_opaque="true" name="next" scale_image="true" width="20" /> |
23 | <button bottom="-53" enabled="true" font="SansSerif" halign="center" height="20" | 23 | <button bottom="-53" enabled="true" font="SansSerif" halign="center" height="20" |
24 | label="New" label_selected="New" left_delta="30" | 24 | label="New" right="-270" |
25 | mouse_opaque="true" name="WLNewPreset" scale_image="true" width="50" /> | 25 | mouse_opaque="true" name="WLNewPreset" scale_image="true" width="100" /> |
26 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" | 26 | <flyout_button bottom_delta="0" follows="left|top" height="20" width="125" |
27 | label="Save to Disk" label_selected="Save to Disk" left_delta="50" | 27 | label="Save to Disk" right="-140" list_position="above" enabled="true" |
28 | mouse_opaque="true" name="WLSavePreset" scale_image="true" width="110" /> | 28 | mouse_opaque="true" halign="center" name="WLSavePreset"> |
29 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" | 29 | <flyout_button_item value="save_inventory_item" name="save_inventory_item"> |
30 | label="Save to Inventory" label_selected="Save" left_delta="110" | 30 | Save to Inventory |
31 | mouse_opaque="true" name="WLSaveNotecard" scale_image="true" width="110" /> | 31 | </flyout_button_item> |
32 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" | 32 | <flyout_button_item value="save_disk_item" name="save_disk_item"> |
33 | label="Delete File" label_selected="Delete File" left_delta="110" | 33 | Save to Disk |
34 | mouse_opaque="true" name="WLDeletePreset" scale_image="true" width="110" /> | 34 | </flyout_button_item> |
35 | <button bottom_delta="-20" enabled="true" font="SansSerif" halign="center" height="20" | 35 | </flyout_button> |
36 | label="Day Cycle Editor" label_selected="Day Cycle Editor" | 36 | <button bottom_delta="0" enabled="true" font="SansSerif" halign="center" height="20" |
37 | left_delta="-15" mouse_opaque="true" name="WLDayCycleMenuButton" | 37 | label="Delete File" label_selected="Delete File" right="-10" |
38 | scale_image="true" width="125" /> | 38 | mouse_opaque="true" name="WLDeletePreset" scale_image="true" width="125" /> |
39 | <tab_container bottom="-220" follows="left|top" height="160" left="0" | 39 | <tab_container bottom="-220" follows="left|top" height="160" left="0" |
40 | mouse_opaque="false" name="WindLight Tabs" tab_position="top" width="700"> | 40 | mouse_opaque="false" name="WindLight Tabs" tab_position="top" width="700"> |
41 | <panel border="true" bottom="-220" follows="left|top|right|bottom" height="160" | 41 | <panel border="true" bottom="-220" follows="left|top|right|bottom" height="160" |
42 | label="Atmosphere" left="1" mouse_opaque="false" | 42 | label="Atmosphere" left="1" mouse_opaque="false" |
43 | name="Atmosphere" width="698"> | 43 | name="Atmosphere" width="698"> |
44 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 44 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
45 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 45 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
46 | font="SansSerif" h_pad="0" halign="left" height="16" | 46 | font="SansSerif" h_pad="0" halign="left" height="16" |
47 | left="10" mouse_opaque="true" name="BHText" v_pad="0" width="355"> | 47 | left="10" mouse_opaque="true" name="BHText" v_pad="0" width="355"> |
48 | Blue Horizon | 48 | Blue Horizon |
49 | </text> | 49 | </text> |
50 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 50 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
51 | left="160" name="WLBlueHorizonHelp" width="18" /> | 51 | left="160" name="WLBlueHorizonHelp" width="18" /> |
52 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 52 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
53 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" | 53 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" |
54 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 54 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
55 | left="10" mouse_opaque="true" name="BHText2" v_pad="0" width="10"> | 55 | left="10" mouse_opaque="true" name="BHText2" v_pad="0" width="10"> |
56 | R | 56 | R |
57 | </text> | 57 | </text> |
58 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 58 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
59 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 59 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
60 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 60 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
61 | left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10"> | 61 | left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10"> |
62 | G | 62 | G |
63 | </text> | 63 | </text> |
64 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 64 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
65 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 65 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
66 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 66 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
67 | left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10"> | 67 | left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10"> |
68 | B | 68 | B |
69 | </text> | 69 | </text> |
70 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 70 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
71 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 71 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
72 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 72 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
73 | left_delta="0" mouse_opaque="true" name="BHText5" v_pad="0" width="10"> | 73 | left_delta="0" mouse_opaque="true" name="BHText5" v_pad="0" width="10"> |
74 | I | 74 | I |
75 | </text> | 75 | </text> |
76 | <slider bottom="-50" can_edit_text="false" control_name="WLBlueHorizonR" | 76 | <slider bottom="-50" can_edit_text="false" control_name="WLBlueHorizonR" |
77 | decimal_digits="2" follows="left" height="10" increment="0.01" | 77 | decimal_digits="2" follows="left" height="10" increment="0.01" |
78 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 78 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
79 | mouse_opaque="true" name="WLBlueHorizonR" show_text="true" value="0.7" | 79 | mouse_opaque="true" name="WLBlueHorizonR" show_text="true" value="0.7" |
80 | width="200" /> | 80 | width="200" /> |
81 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonG" | 81 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonG" |
82 | decimal_digits="2" follows="left" height="10" increment="0.01" | 82 | decimal_digits="2" follows="left" height="10" increment="0.01" |
83 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 83 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
84 | mouse_opaque="true" name="WLBlueHorizonG" show_text="true" value="0.7" | 84 | mouse_opaque="true" name="WLBlueHorizonG" show_text="true" value="0.7" |
85 | width="200" /> | 85 | width="200" /> |
86 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonB" | 86 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonB" |
87 | decimal_digits="2" follows="left" height="10" increment="0.01" | 87 | decimal_digits="2" follows="left" height="10" increment="0.01" |
88 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 88 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
89 | mouse_opaque="true" name="WLBlueHorizonB" show_text="true" value="0.7" | 89 | mouse_opaque="true" name="WLBlueHorizonB" show_text="true" value="0.7" |
90 | width="200" /> | 90 | width="200" /> |
91 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonI" | 91 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueHorizonI" |
92 | decimal_digits="2" follows="left" height="10" increment="0.01" | 92 | decimal_digits="2" follows="left" height="10" increment="0.01" |
93 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" | 93 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" |
94 | mouse_opaque="true" name="WLBlueHorizonI" show_text="true" value="1.0" | 94 | mouse_opaque="true" name="WLBlueHorizonI" show_text="true" value="1.0" |
95 | width="200" /> | 95 | width="200" /> |
96 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 96 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
97 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" | 97 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" |
98 | font="SansSerif" h_pad="0" halign="left" height="16" | 98 | font="SansSerif" h_pad="0" halign="left" height="16" |
99 | left="10" mouse_opaque="true" name="BDensText" v_pad="0" width="355"> | 99 | left="10" mouse_opaque="true" name="BDensText" v_pad="0" width="355"> |
100 | Haze Horizon | 100 | Haze Horizon |
101 | </text> | 101 | </text> |
102 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 102 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
103 | left="160" name="WLHazeHorizonHelp" width="18" /> | 103 | left="160" name="WLHazeHorizonHelp" width="18" /> |
104 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLHazeHorizon" | 104 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLHazeHorizon" |
105 | decimal_digits="2" follows="left" height="10" increment="0.01" | 105 | decimal_digits="2" follows="left" height="10" increment="0.01" |
106 | initial_val="0.25" label="" left="24" max_val="1.0" min_val="0" | 106 | initial_val="0.25" label="" left="24" max_val="1.0" min_val="0" |
107 | mouse_opaque="true" name="WLHazeHorizon" show_text="true" value="1.0" | 107 | mouse_opaque="true" name="WLHazeHorizon" show_text="true" value="1.0" |
108 | width="200" /> | 108 | width="200" /> |
109 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 109 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
110 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 110 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
111 | font="SansSerif" h_pad="0" halign="left" height="16" | 111 | font="SansSerif" h_pad="0" halign="left" height="16" |
112 | left="245" mouse_opaque="true" name="BDensText2" v_pad="0" width="355"> | 112 | left="245" mouse_opaque="true" name="BDensText2" v_pad="0" width="355"> |
113 | Blue Density | 113 | Blue Density |
114 | </text> | 114 | </text> |
115 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 115 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
116 | left="395" name="WLBlueDensityHelp" width="18" /> | 116 | left="395" name="WLBlueDensityHelp" width="18" /> |
117 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 117 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
118 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" | 118 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" |
119 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 119 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
120 | left="245" mouse_opaque="true" name="BHText6" v_pad="0" width="10"> | 120 | left="245" mouse_opaque="true" name="BHText6" v_pad="0" width="10"> |
121 | R | 121 | R |
122 | </text> | 122 | </text> |
123 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 123 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
124 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 124 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
125 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 125 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
126 | left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10"> | 126 | left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10"> |
127 | G | 127 | G |
128 | </text> | 128 | </text> |
129 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 129 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
130 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 130 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
131 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 131 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
132 | left_delta="0" mouse_opaque="true" name="BHText8" v_pad="0" width="10"> | 132 | left_delta="0" mouse_opaque="true" name="BHText8" v_pad="0" width="10"> |
133 | B | 133 | B |
134 | </text> | 134 | </text> |
135 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 135 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
136 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 136 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
137 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 137 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
138 | left_delta="0" mouse_opaque="true" name="BHText9" v_pad="0" width="10"> | 138 | left_delta="0" mouse_opaque="true" name="BHText9" v_pad="0" width="10"> |
139 | I | 139 | I |
140 | </text> | 140 | </text> |
141 | <slider bottom="-50" can_edit_text="false" control_name="WLBlueDensityR" | 141 | <slider bottom="-50" can_edit_text="false" control_name="WLBlueDensityR" |
142 | decimal_digits="2" follows="left" height="10" increment="0.01" | 142 | decimal_digits="2" follows="left" height="10" increment="0.01" |
143 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" | 143 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" |
144 | mouse_opaque="true" name="WLBlueDensityR" show_text="true" value="1.0" | 144 | mouse_opaque="true" name="WLBlueDensityR" show_text="true" value="1.0" |
145 | width="200" /> | 145 | width="200" /> |
146 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityG" | 146 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityG" |
147 | decimal_digits="2" follows="left" height="10" increment="0.01" | 147 | decimal_digits="2" follows="left" height="10" increment="0.01" |
148 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" | 148 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" |
149 | mouse_opaque="true" name="WLBlueDensityG" show_text="true" value="1.0" | 149 | mouse_opaque="true" name="WLBlueDensityG" show_text="true" value="1.0" |
150 | width="200" /> | 150 | width="200" /> |
151 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityB" | 151 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityB" |
152 | decimal_digits="2" follows="left" height="10" increment="0.01" | 152 | decimal_digits="2" follows="left" height="10" increment="0.01" |
153 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" | 153 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" |
154 | mouse_opaque="true" name="WLBlueDensityB" show_text="true" value="1.0" | 154 | mouse_opaque="true" name="WLBlueDensityB" show_text="true" value="1.0" |
155 | width="200" /> | 155 | width="200" /> |
156 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityI" | 156 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLBlueDensityI" |
157 | decimal_digits="2" follows="left" height="10" increment="0.01" | 157 | decimal_digits="2" follows="left" height="10" increment="0.01" |
158 | initial_val="1" label="" left="259" max_val="1" min_val="0" | 158 | initial_val="1" label="" left="259" max_val="1" min_val="0" |
159 | mouse_opaque="true" name="WLBlueDensityI" show_text="true" value="1.0" | 159 | mouse_opaque="true" name="WLBlueDensityI" show_text="true" value="1.0" |
160 | width="200" /> | 160 | width="200" /> |
161 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 161 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
162 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" | 162 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" |
163 | font="SansSerif" h_pad="0" halign="left" height="16" | 163 | font="SansSerif" h_pad="0" halign="left" height="16" |
164 | left="245" mouse_opaque="true" name="HDText" v_pad="0" width="355"> | 164 | left="245" mouse_opaque="true" name="HDText" v_pad="0" width="355"> |
165 | Haze Density | 165 | Haze Density |
166 | </text> | 166 | </text> |
167 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 167 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
168 | left="395" name="WLHazeDensityHelp" width="18" /> | 168 | left="395" name="WLHazeDensityHelp" width="18" /> |
169 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLHazeDensity" | 169 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLHazeDensity" |
170 | decimal_digits="2" follows="left" height="10" increment="0.01" | 170 | decimal_digits="2" follows="left" height="10" increment="0.01" |
171 | initial_val="0.7" label="" left="259" max_val="4" min_val="0" | 171 | initial_val="0.7" label="" left="259" max_val="4" min_val="0" |
172 | mouse_opaque="true" name="WLHazeDensity" show_text="true" value="1.0" | 172 | mouse_opaque="true" name="WLHazeDensity" show_text="true" value="1.0" |
173 | width="200" /> | 173 | width="200" /> |
174 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 174 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
175 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 175 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
176 | font="SansSerif" h_pad="0" halign="left" height="16" | 176 | font="SansSerif" h_pad="0" halign="left" height="16" |
177 | left="480" mouse_opaque="true" name="DensMultText" v_pad="0" width="355"> | 177 | left="480" mouse_opaque="true" name="DensMultText" v_pad="0" width="355"> |
178 | Density Multiplier | 178 | Density Multiplier |
179 | </text> | 179 | </text> |
180 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 180 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
181 | left="630" name="WLDensityMultHelp" width="18" /> | 181 | left="630" name="WLDensityMultHelp" width="18" /> |
182 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLDensityMult" | 182 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLDensityMult" |
183 | decimal_digits="2" follows="left" height="10" increment="0.01" | 183 | decimal_digits="2" follows="left" height="10" increment="0.01" |
184 | initial_val="0.1" label="" left="494" max_val="0.9" min_val="0" | 184 | initial_val="0.1" label="" left="494" max_val="0.9" min_val="0" |
185 | mouse_opaque="true" name="WLDensityMult" show_text="true" value="1.0" | 185 | mouse_opaque="true" name="WLDensityMult" show_text="true" value="1.0" |
186 | width="200" /> | 186 | width="200" /> |
187 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 187 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
188 | bottom="-53" drop_shadow_visible="true" follows="left|top|right" | 188 | bottom="-53" drop_shadow_visible="true" follows="left|top|right" |
189 | font="SansSerif" h_pad="0" halign="left" height="16" | 189 | font="SansSerif" h_pad="0" halign="left" height="16" |
190 | left="480" mouse_opaque="true" name="WLDistanceMultText" v_pad="0" | 190 | left="480" mouse_opaque="true" name="WLDistanceMultText" v_pad="0" |
191 | width="355"> | 191 | width="355"> |
192 | Distance Multiplier | 192 | Distance Multiplier |
193 | </text> | 193 | </text> |
194 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 194 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
195 | left="630" name="WLDistanceMultHelp" width="18" /> | 195 | left="630" name="WLDistanceMultHelp" width="18" /> |
196 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLDistancMult" | 196 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLDistancMult" |
197 | decimal_digits="1" follows="left" height="10" increment="0.1" | 197 | decimal_digits="1" follows="left" height="10" increment="0.1" |
198 | initial_val="1.0" label="" left="494" max_val="100" min_val="0" | 198 | initial_val="1.0" label="" left="494" max_val="100" min_val="0" |
199 | mouse_opaque="true" name="WLDistanceMult" show_text="true" value="0.0" | 199 | mouse_opaque="true" name="WLDistanceMult" show_text="true" value="0.0" |
200 | width="207" /> | 200 | width="207" /> |
201 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 201 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
202 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" | 202 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" |
203 | font="SansSerif" h_pad="0" halign="left" height="16" | 203 | font="SansSerif" h_pad="0" halign="left" height="16" |
204 | left="480" mouse_opaque="true" name="MaxAltText" v_pad="0" width="355"> | 204 | left="480" mouse_opaque="true" name="MaxAltText" v_pad="0" width="355"> |
205 | Max Altitude | 205 | Max Altitude |
206 | </text> | 206 | </text> |
207 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 207 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
208 | left="630" name="WLMaxAltitudeHelp" width="18" /> | 208 | left="630" name="WLMaxAltitudeHelp" width="18" /> |
209 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLMaxAltitude" | 209 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLMaxAltitude" |
210 | decimal_digits="0" follows="left" height="10" increment="1" | 210 | decimal_digits="0" follows="left" height="10" increment="1" |
211 | initial_val="500" label="" left="494" max_val="4000" min_val="0" | 211 | initial_val="500" label="" left="494" max_val="4000" min_val="0" |
212 | mouse_opaque="true" name="WLMaxAltitude" show_text="true" value="4000" | 212 | mouse_opaque="true" name="WLMaxAltitude" show_text="true" value="4000" |
213 | width="205" /> | 213 | width="205" /> |
214 | </panel> | 214 | </panel> |
215 | <panel border="true" bottom="-180" follows="left|top|right|bottom" height="160" | 215 | <panel border="true" bottom="-180" follows="left|top|right|bottom" height="160" |
216 | label="Lighting" left="1" mouse_opaque="true" | 216 | label="Lighting" left="1" mouse_opaque="true" |
217 | name="Lighting" width="698"> | 217 | name="Lighting" width="698"> |
218 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 218 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
219 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 219 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
220 | font="SansSerif" h_pad="0" halign="left" height="16" | 220 | font="SansSerif" h_pad="0" halign="left" height="16" |
221 | left="10" mouse_opaque="true" name="SLCText" v_pad="0" width="355"> | 221 | left="10" mouse_opaque="true" name="SLCText" v_pad="0" width="355"> |
222 | Sun/Moon Color | 222 | Sun/Moon Color |
223 | </text> | 223 | </text> |
224 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 224 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
225 | left="160" name="WLSunlightColorHelp" width="18" /> | 225 | left="160" name="WLSunlightColorHelp" width="18" /> |
226 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 226 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
227 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" | 227 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" |
228 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 228 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
229 | left="10" mouse_opaque="true" name="BHText" v_pad="0" width="10"> | 229 | left="10" mouse_opaque="true" name="BHText" v_pad="0" width="10"> |
230 | R | 230 | R |
231 | </text> | 231 | </text> |
232 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 232 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
233 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 233 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
234 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 234 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
235 | left_delta="0" mouse_opaque="true" name="BHText2" v_pad="0" width="10"> | 235 | left_delta="0" mouse_opaque="true" name="BHText2" v_pad="0" width="10"> |
236 | G | 236 | G |
237 | </text> | 237 | </text> |
238 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 238 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
239 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 239 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
240 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 240 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
241 | left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10"> | 241 | left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10"> |
242 | B | 242 | B |
243 | </text> | 243 | </text> |
244 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 244 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
245 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 245 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
246 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 246 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
247 | left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10"> | 247 | left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10"> |
248 | I | 248 | I |
249 | </text> | 249 | </text> |
250 | <slider bottom="-50" can_edit_text="false" control_name="WLSunlightR" | 250 | <slider bottom="-50" can_edit_text="false" control_name="WLSunlightR" |
251 | decimal_digits="2" follows="left" height="10" increment="0.01" | 251 | decimal_digits="2" follows="left" height="10" increment="0.01" |
252 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 252 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
253 | mouse_opaque="true" name="WLSunlightR" show_text="true" value="0.7" | 253 | mouse_opaque="true" name="WLSunlightR" show_text="true" value="0.7" |
254 | width="200" /> | 254 | width="200" /> |
255 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightG" | 255 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightG" |
256 | decimal_digits="2" follows="left" height="10" increment="0.01" | 256 | decimal_digits="2" follows="left" height="10" increment="0.01" |
257 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 257 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
258 | mouse_opaque="true" name="WLSunlightG" show_text="true" value="0.7" | 258 | mouse_opaque="true" name="WLSunlightG" show_text="true" value="0.7" |
259 | width="200" /> | 259 | width="200" /> |
260 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightB" | 260 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightB" |
261 | decimal_digits="2" follows="left" height="10" increment="0.01" | 261 | decimal_digits="2" follows="left" height="10" increment="0.01" |
262 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 262 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
263 | mouse_opaque="true" name="WLSunlightB" show_text="true" value="0.7" | 263 | mouse_opaque="true" name="WLSunlightB" show_text="true" value="0.7" |
264 | width="200" /> | 264 | width="200" /> |
265 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightI" | 265 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLSunlightI" |
266 | decimal_digits="2" follows="left" height="10" increment="0.01" | 266 | decimal_digits="2" follows="left" height="10" increment="0.01" |
267 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" | 267 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" |
268 | mouse_opaque="true" name="WLSunlightI" show_text="true" value="1.0" | 268 | mouse_opaque="true" name="WLSunlightI" show_text="true" value="1.0" |
269 | width="200" /> | 269 | width="200" /> |
270 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 270 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
271 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" | 271 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" |
272 | font="SansSerif" h_pad="0" halign="left" height="16" | 272 | font="SansSerif" h_pad="0" halign="left" height="16" |
273 | left="10" mouse_opaque="true" name="TODText" v_pad="0" width="355"> | 273 | left="10" mouse_opaque="true" name="TODText" v_pad="0" width="355"> |
274 | Sun/Moon Position | 274 | Sun/Moon Position |
275 | </text> | 275 | </text> |
276 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 276 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
277 | left="160" name="WLTimeOfDayHelp" width="18" /> | 277 | left="160" name="WLTimeOfDayHelp" width="18" /> |
278 | <icon bottom_delta="-30" follows="left|top" height="20" image_name="icon_diurnal.tga" | 278 | <icon bottom_delta="-30" follows="left|top" height="20" image_name="icon_diurnal.tga" |
279 | left="30" name="SkyDayCycle" width="148" /> | 279 | left="30" name="SkyDayCycle" width="148" /> |
280 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLSunAngle" | 280 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLSunAngle" |
281 | decimal_digits="3" follows="left" height="10" increment="0.001" | 281 | decimal_digits="3" follows="left" height="10" increment="0.001" |
282 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 282 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
283 | mouse_opaque="true" name="WLSunAngle" show_text="true" value="1.0" | 283 | mouse_opaque="true" name="WLSunAngle" show_text="true" value="1.0" |
284 | width="204" /> | 284 | width="204" /> |
285 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 285 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
286 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 286 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
287 | font="SansSerif" h_pad="0" halign="left" height="16" | 287 | font="SansSerif" h_pad="0" halign="left" height="16" |
288 | left="245" mouse_opaque="true" name="WLAmbientText" v_pad="0" width="355"> | 288 | left="245" mouse_opaque="true" name="WLAmbientText" v_pad="0" width="355"> |
289 | Ambient | 289 | Ambient |
290 | </text> | 290 | </text> |
291 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 291 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
292 | left="395" name="WLAmbientHelp" width="18" /> | 292 | left="395" name="WLAmbientHelp" width="18" /> |
293 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 293 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
294 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" | 294 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" |
295 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 295 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
296 | left="245" mouse_opaque="true" name="BHText5" v_pad="0" width="10"> | 296 | left="245" mouse_opaque="true" name="BHText5" v_pad="0" width="10"> |
297 | R | 297 | R |
298 | </text> | 298 | </text> |
299 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 299 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
300 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 300 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
301 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 301 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
302 | left_delta="0" mouse_opaque="true" name="BHText6" v_pad="0" width="10"> | 302 | left_delta="0" mouse_opaque="true" name="BHText6" v_pad="0" width="10"> |
303 | G | 303 | G |
304 | </text> | 304 | </text> |
305 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 305 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
306 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 306 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
307 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 307 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
308 | left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10"> | 308 | left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10"> |
309 | B | 309 | B |
310 | </text> | 310 | </text> |
311 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 311 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
312 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 312 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
313 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 313 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
314 | left_delta="0" mouse_opaque="true" name="BHText8" v_pad="0" width="10"> | 314 | left_delta="0" mouse_opaque="true" name="BHText8" v_pad="0" width="10"> |
315 | I | 315 | I |
316 | </text> | 316 | </text> |
317 | <slider bottom="-50" can_edit_text="false" control_name="WLAmbientR" decimal_digits="2" | 317 | <slider bottom="-50" can_edit_text="false" control_name="WLAmbientR" decimal_digits="2" |
318 | follows="left" height="10" increment="0.01" initial_val="0.7" label="" | 318 | follows="left" height="10" increment="0.01" initial_val="0.7" label="" |
319 | left="259" max_val="1" min_val="0" mouse_opaque="true" name="WLAmbientR" | 319 | left="259" max_val="1" min_val="0" mouse_opaque="true" name="WLAmbientR" |
320 | show_text="true" value="1.0" width="200" /> | 320 | show_text="true" value="1.0" width="200" /> |
321 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientG" | 321 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientG" |
322 | decimal_digits="2" follows="left" height="10" increment="0.01" | 322 | decimal_digits="2" follows="left" height="10" increment="0.01" |
323 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" | 323 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" |
324 | mouse_opaque="true" name="WLAmbientG" show_text="true" value="1.0" | 324 | mouse_opaque="true" name="WLAmbientG" show_text="true" value="1.0" |
325 | width="200" /> | 325 | width="200" /> |
326 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientB" | 326 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientB" |
327 | decimal_digits="2" follows="left" height="10" increment="0.01" | 327 | decimal_digits="2" follows="left" height="10" increment="0.01" |
328 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" | 328 | initial_val="0.7" label="" left="259" max_val="1" min_val="0" |
329 | mouse_opaque="true" name="WLAmbientB" show_text="true" value="1.0" | 329 | mouse_opaque="true" name="WLAmbientB" show_text="true" value="1.0" |
330 | width="200" /> | 330 | width="200" /> |
331 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientI" | 331 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLAmbientI" |
332 | decimal_digits="2" follows="left" height="10" increment="0.01" | 332 | decimal_digits="2" follows="left" height="10" increment="0.01" |
333 | initial_val="1" label="" left="259" max_val="1" min_val="0" | 333 | initial_val="1" label="" left="259" max_val="1" min_val="0" |
334 | mouse_opaque="true" name="WLAmbientI" show_text="true" value="1.0" | 334 | mouse_opaque="true" name="WLAmbientI" show_text="true" value="1.0" |
335 | width="200" /> | 335 | width="200" /> |
336 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 336 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
337 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" | 337 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" |
338 | font="SansSerif" h_pad="0" halign="left" height="16" | 338 | font="SansSerif" h_pad="0" halign="left" height="16" |
339 | left="245" mouse_opaque="true" name="WLEastAngleText" v_pad="0" width="355"> | 339 | left="245" mouse_opaque="true" name="WLEastAngleText" v_pad="0" width="355"> |
340 | East Angle | 340 | East Angle |
341 | </text> | 341 | </text> |
342 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 342 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
343 | left="395" name="WLEastAngleHelp" width="18" /> | 343 | left="395" name="WLEastAngleHelp" width="18" /> |
344 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLEastAngle" | 344 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLEastAngle" |
345 | decimal_digits="2" follows="left" height="10" increment="0.01" | 345 | decimal_digits="2" follows="left" height="10" increment="0.01" |
346 | initial_val="0.0" label="" left="259" max_val="1" min_val="0" | 346 | initial_val="0.0" label="" left="259" max_val="1" min_val="0" |
347 | mouse_opaque="true" name="WLEastAngle" show_text="true" value="1.0" | 347 | mouse_opaque="true" name="WLEastAngle" show_text="true" value="1.0" |
348 | width="200" /> | 348 | width="200" /> |
349 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 349 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
350 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 350 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
351 | font="SansSerif" h_pad="0" halign="left" height="16" | 351 | font="SansSerif" h_pad="0" halign="left" height="16" |
352 | left="480" mouse_opaque="true" name="SunGlowText" v_pad="0" width="355"> | 352 | left="480" mouse_opaque="true" name="SunGlowText" v_pad="0" width="355"> |
353 | Sun Glow | 353 | Sun Glow |
354 | </text> | 354 | </text> |
355 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 355 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
356 | left="630" name="WLSunGlowHelp" width="18" /> | 356 | left="630" name="WLSunGlowHelp" width="18" /> |
357 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLGlowB" | 357 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLGlowB" |
358 | decimal_digits="2" follows="left" height="10" increment="0.01" | 358 | decimal_digits="2" follows="left" height="10" increment="0.01" |
359 | initial_val="0.1" label="Focus " left="494" max_val="0.5" min_val="0" | 359 | initial_val="0.1" label="Focus " left="494" max_val="0.5" min_val="0" |
360 | mouse_opaque="true" name="WLGlowB" show_text="true" value="1.0" width="200" /> | 360 | mouse_opaque="true" name="WLGlowB" show_text="true" value="1.0" width="200" /> |
361 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLGlowR" | 361 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLGlowR" |
362 | decimal_digits="2" follows="left" height="10" increment="0.01" | 362 | decimal_digits="2" follows="left" height="10" increment="0.01" |
363 | initial_val="0.25" label="Size " left="494" max_val="1.99" min_val="1" | 363 | initial_val="0.25" label="Size " left="494" max_val="1.99" min_val="1" |
364 | mouse_opaque="true" name="WLGlowR" show_text="true" value="1.0" width="200" /> | 364 | mouse_opaque="true" name="WLGlowR" show_text="true" value="1.0" width="200" /> |
365 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 365 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
366 | bottom="-67" drop_shadow_visible="true" follows="left|top|right" | 366 | bottom="-67" drop_shadow_visible="true" follows="left|top|right" |
367 | font="SansSerif" h_pad="0" halign="left" height="16" | 367 | font="SansSerif" h_pad="0" halign="left" height="16" |
368 | left="480" mouse_opaque="true" name="SceneGammaText" v_pad="0" width="200"> | 368 | left="480" mouse_opaque="true" name="SceneGammaText" v_pad="0" width="200"> |
369 | Scene Gamma | 369 | Scene Gamma |
370 | </text> | 370 | </text> |
371 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 371 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
372 | left="630" name="WLSceneGammaHelp" width="18" /> | 372 | left="630" name="WLSceneGammaHelp" width="18" /> |
373 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLGamma" | 373 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLGamma" |
374 | decimal_digits="2" follows="bottom" height="10" increment="0.01" | 374 | decimal_digits="2" follows="bottom" height="10" increment="0.01" |
375 | initial_val="2.0" label="" left="494" max_val="10.0" min_val="0" | 375 | initial_val="2.0" label="" left="494" max_val="10.0" min_val="0" |
376 | mouse_opaque="true" name="WLGamma" show_text="true" value="2.0" width="207" /> | 376 | mouse_opaque="true" name="WLGamma" show_text="true" value="2.0" width="207" /> |
377 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 377 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
378 | bottom="-102" drop_shadow_visible="true" follows="left|top|right" | 378 | bottom="-102" drop_shadow_visible="true" follows="left|top|right" |
379 | font="SansSerif" h_pad="0" halign="left" height="16" | 379 | font="SansSerif" h_pad="0" halign="left" height="16" |
380 | left="480" mouse_opaque="true" name="WLStarText" v_pad="0" width="355"> | 380 | left="480" mouse_opaque="true" name="WLStarText" v_pad="0" width="355"> |
381 | Star Brightness | 381 | Star Brightness |
382 | </text> | 382 | </text> |
383 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 383 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
384 | left="630" name="WLStarBrightnessHelp" width="18" /> | 384 | left="630" name="WLStarBrightnessHelp" width="18" /> |
385 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLStarAlpha" | 385 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLStarAlpha" |
386 | decimal_digits="2" follows="bottom" height="10" increment="0.01" | 386 | decimal_digits="2" follows="bottom" height="10" increment="0.01" |
387 | initial_val="0" label="" left="494" max_val="2" min_val="0" | 387 | initial_val="0" label="" left="494" max_val="2" min_val="0" |
388 | mouse_opaque="true" name="WLStarAlpha" show_text="true" value="0" | 388 | mouse_opaque="true" name="WLStarAlpha" show_text="true" value="0" |
389 | width="200" /> | 389 | width="200" /> |
390 | </panel> | 390 | </panel> |
391 | <panel border="true" bottom="-180" follows="left|top|right|bottom" height="160" | 391 | <panel border="true" bottom="-180" follows="left|top|right|bottom" height="160" |
392 | label="Clouds" left="1" mouse_opaque="false" name="Clouds" | 392 | label="Clouds" left="1" mouse_opaque="false" name="Clouds" |
393 | width="698"> | 393 | width="698"> |
394 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 394 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
395 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 395 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
396 | font="SansSerif" h_pad="0" halign="left" height="16" | 396 | font="SansSerif" h_pad="0" halign="left" height="16" |
397 | left="10" mouse_opaque="true" name="WLCloudColorText" v_pad="0" width="355"> | 397 | left="10" mouse_opaque="true" name="WLCloudColorText" v_pad="0" width="355"> |
398 | Cloud Color | 398 | Cloud Color |
399 | </text> | 399 | </text> |
400 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 400 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
401 | left="160" name="WLCloudColorHelp" width="18" /> | 401 | left="160" name="WLCloudColorHelp" width="18" /> |
402 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 402 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
403 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" | 403 | bottom="-37" drop_shadow_visible="true" follows="left|top|right" |
404 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 404 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
405 | left="10" mouse_opaque="true" name="BHText" v_pad="0" width="10"> | 405 | left="10" mouse_opaque="true" name="BHText" v_pad="0" width="10"> |
406 | R | 406 | R |
407 | </text> | 407 | </text> |
408 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 408 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
409 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 409 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
410 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 410 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
411 | left_delta="0" mouse_opaque="true" name="BHText2" v_pad="0" width="10"> | 411 | left_delta="0" mouse_opaque="true" name="BHText2" v_pad="0" width="10"> |
412 | G | 412 | G |
413 | </text> | 413 | </text> |
414 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 414 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
415 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 415 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
416 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 416 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
417 | left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10"> | 417 | left_delta="0" mouse_opaque="true" name="BHText3" v_pad="0" width="10"> |
418 | B | 418 | B |
419 | </text> | 419 | </text> |
420 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 420 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
421 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 421 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
422 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 422 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
423 | left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10"> | 423 | left_delta="0" mouse_opaque="true" name="BHText4" v_pad="0" width="10"> |
424 | I | 424 | I |
425 | </text> | 425 | </text> |
426 | <slider bottom="-50" can_edit_text="false" control_name="WLCloudColorR" | 426 | <slider bottom="-50" can_edit_text="false" control_name="WLCloudColorR" |
427 | decimal_digits="2" follows="left" height="10" increment="0.01" | 427 | decimal_digits="2" follows="left" height="10" increment="0.01" |
428 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 428 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
429 | mouse_opaque="true" name="WLCloudColorR" show_text="true" value="0.7" | 429 | mouse_opaque="true" name="WLCloudColorR" show_text="true" value="0.7" |
430 | width="200" /> | 430 | width="200" /> |
431 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorG" | 431 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorG" |
432 | decimal_digits="2" follows="left" height="10" increment="0.01" | 432 | decimal_digits="2" follows="left" height="10" increment="0.01" |
433 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 433 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
434 | mouse_opaque="true" name="WLCloudColorG" show_text="true" value="0.7" | 434 | mouse_opaque="true" name="WLCloudColorG" show_text="true" value="0.7" |
435 | width="200" /> | 435 | width="200" /> |
436 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorB" | 436 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorB" |
437 | decimal_digits="2" follows="left" height="10" increment="0.01" | 437 | decimal_digits="2" follows="left" height="10" increment="0.01" |
438 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" | 438 | initial_val="0.7" label="" left="24" max_val="1" min_val="0" |
439 | mouse_opaque="true" name="WLCloudColorB" show_text="true" value="0.7" | 439 | mouse_opaque="true" name="WLCloudColorB" show_text="true" value="0.7" |
440 | width="200" /> | 440 | width="200" /> |
441 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorI" | 441 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudColorI" |
442 | decimal_digits="2" follows="left" height="10" increment="0.01" | 442 | decimal_digits="2" follows="left" height="10" increment="0.01" |
443 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" | 443 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" |
444 | mouse_opaque="true" name="WLCloudColorI" show_text="true" value="1.0" | 444 | mouse_opaque="true" name="WLCloudColorI" show_text="true" value="1.0" |
445 | width="200" /> | 445 | width="200" /> |
446 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 446 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
447 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" | 447 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" |
448 | font="SansSerif" h_pad="0" halign="left" height="16" | 448 | font="SansSerif" h_pad="0" halign="left" height="16" |
449 | left="10" mouse_opaque="true" name="WLCloudColorText2" v_pad="0" | 449 | left="10" mouse_opaque="true" name="WLCloudColorText2" v_pad="0" |
450 | width="355"> | 450 | width="355"> |
451 | Cloud XY/Density | 451 | Cloud XY/Density |
452 | </text> | 452 | </text> |
453 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 453 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
454 | left="160" name="WLCloudDensityHelp" width="18" /> | 454 | left="160" name="WLCloudDensityHelp" width="18" /> |
455 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 455 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
456 | bottom="-103" drop_shadow_visible="true" follows="left|top|right" | 456 | bottom="-103" drop_shadow_visible="true" follows="left|top|right" |
457 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 457 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
458 | left="10" mouse_opaque="true" name="BHText5" v_pad="0" width="10"> | 458 | left="10" mouse_opaque="true" name="BHText5" v_pad="0" width="10"> |
459 | X | 459 | X |
460 | </text> | 460 | </text> |
461 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 461 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
462 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 462 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
463 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 463 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
464 | left_delta="0" mouse_opaque="true" name="BHText6" v_pad="0" width="10"> | 464 | left_delta="0" mouse_opaque="true" name="BHText6" v_pad="0" width="10"> |
465 | Y | 465 | Y |
466 | </text> | 466 | </text> |
467 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 467 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
468 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 468 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
469 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 469 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
470 | left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10"> | 470 | left_delta="0" mouse_opaque="true" name="BHText7" v_pad="0" width="10"> |
471 | D | 471 | D |
472 | </text> | 472 | </text> |
473 | <slider bottom="-117" can_edit_text="false" control_name="WLCloudX" decimal_digits="2" | 473 | <slider bottom="-117" can_edit_text="false" control_name="WLCloudX" decimal_digits="2" |
474 | follows="left" height="10" increment="0.01" initial_val="0.5" label="" | 474 | follows="left" height="10" increment="0.01" initial_val="0.5" label="" |
475 | left="24" max_val="1" min_val="0" mouse_opaque="true" name="WLCloudX" | 475 | left="24" max_val="1" min_val="0" mouse_opaque="true" name="WLCloudX" |
476 | show_text="true" value="0.5" width="200" /> | 476 | show_text="true" value="0.5" width="200" /> |
477 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudY" | 477 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudY" |
478 | decimal_digits="2" follows="left" height="10" increment="0.01" | 478 | decimal_digits="2" follows="left" height="10" increment="0.01" |
479 | initial_val="0.5" label="" left="24" max_val="1" min_val="0" | 479 | initial_val="0.5" label="" left="24" max_val="1" min_val="0" |
480 | mouse_opaque="true" name="WLCloudY" show_text="true" value="0.5" | 480 | mouse_opaque="true" name="WLCloudY" show_text="true" value="0.5" |
481 | width="200" /> | 481 | width="200" /> |
482 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDensity" | 482 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDensity" |
483 | decimal_digits="2" follows="left" height="10" increment="0.01" | 483 | decimal_digits="2" follows="left" height="10" increment="0.01" |
484 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" | 484 | initial_val="1.0" label="" left="24" max_val="1" min_val="0" |
485 | mouse_opaque="true" name="WLCloudDensity" show_text="true" value="1.0" | 485 | mouse_opaque="true" name="WLCloudDensity" show_text="true" value="1.0" |
486 | width="200" /> | 486 | width="200" /> |
487 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 487 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
488 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 488 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
489 | font="SansSerif" h_pad="0" halign="left" height="16" | 489 | font="SansSerif" h_pad="0" halign="left" height="16" |
490 | left="245" mouse_opaque="true" name="WLCloudCoverageText" v_pad="0" | 490 | left="245" mouse_opaque="true" name="WLCloudCoverageText" v_pad="0" |
491 | width="355"> | 491 | width="355"> |
492 | Cloud Coverage | 492 | Cloud Coverage |
493 | </text> | 493 | </text> |
494 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 494 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
495 | left="395" name="WLCloudCoverageHelp" width="18" /> | 495 | left="395" name="WLCloudCoverageHelp" width="18" /> |
496 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLCloudCoverage" | 496 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLCloudCoverage" |
497 | decimal_digits="2" follows="left" height="10" increment="0.01" | 497 | decimal_digits="2" follows="left" height="10" increment="0.01" |
498 | initial_val="0.5" label="" left="259" max_val="1" min_val="0" | 498 | initial_val="0.5" label="" left="259" max_val="1" min_val="0" |
499 | mouse_opaque="true" name="WLCloudCoverage" show_text="true" value="0.0" | 499 | mouse_opaque="true" name="WLCloudCoverage" show_text="true" value="0.0" |
500 | width="200" /> | 500 | width="200" /> |
501 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 501 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
502 | bottom="-55" drop_shadow_visible="true" follows="left|top|right" | 502 | bottom="-55" drop_shadow_visible="true" follows="left|top|right" |
503 | font="SansSerif" h_pad="0" halign="left" height="16" | 503 | font="SansSerif" h_pad="0" halign="left" height="16" |
504 | left="245" mouse_opaque="true" name="WLCloudScaleText" v_pad="0" | 504 | left="245" mouse_opaque="true" name="WLCloudScaleText" v_pad="0" |
505 | width="355"> | 505 | width="355"> |
506 | Cloud Scale | 506 | Cloud Scale |
507 | </text> | 507 | </text> |
508 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 508 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
509 | left="395" name="WLCloudScaleHelp" width="18" /> | 509 | left="395" name="WLCloudScaleHelp" width="18" /> |
510 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLCloudScale" | 510 | <slider bottom_delta="-30" can_edit_text="false" control_name="WLCloudScale" |
511 | decimal_digits="2" follows="left" height="10" increment="0.01" | 511 | decimal_digits="2" follows="left" height="10" increment="0.01" |
512 | initial_val="1.0" label="" left="259" max_val="1.0" min_val="0.01" | 512 | initial_val="1.0" label="" left="259" max_val="1.0" min_val="0.01" |
513 | mouse_opaque="true" name="WLCloudScale" show_text="true" value="1.0" | 513 | mouse_opaque="true" name="WLCloudScale" show_text="true" value="1.0" |
514 | width="200" /> | 514 | width="200" /> |
515 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 515 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
516 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" | 516 | bottom="-87" drop_shadow_visible="true" follows="left|top|right" |
517 | font="SansSerif" h_pad="0" halign="left" height="16" | 517 | font="SansSerif" h_pad="0" halign="left" height="16" |
518 | left="245" mouse_opaque="true" name="WLCloudDetailText" v_pad="0" | 518 | left="245" mouse_opaque="true" name="WLCloudDetailText" v_pad="0" |
519 | width="355"> | 519 | width="355"> |
520 | Cloud Detail (XY/Density) | 520 | Cloud Detail (XY/Density) |
521 | </text> | 521 | </text> |
522 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 522 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
523 | left="395" name="WLCloudDetailHelp" width="18" /> | 523 | left="395" name="WLCloudDetailHelp" width="18" /> |
524 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 524 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
525 | bottom="-103" drop_shadow_visible="true" follows="left|top|right" | 525 | bottom="-103" drop_shadow_visible="true" follows="left|top|right" |
526 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 526 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
527 | left="245" mouse_opaque="true" name="BHText8" v_pad="0" width="10"> | 527 | left="245" mouse_opaque="true" name="BHText8" v_pad="0" width="10"> |
528 | X | 528 | X |
529 | </text> | 529 | </text> |
530 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 530 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
531 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 531 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
532 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 532 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
533 | left_delta="0" mouse_opaque="true" name="BHText9" v_pad="0" width="10"> | 533 | left_delta="0" mouse_opaque="true" name="BHText9" v_pad="0" width="10"> |
534 | Y | 534 | Y |
535 | </text> | 535 | </text> |
536 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 536 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
537 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" | 537 | bottom_delta="-11" drop_shadow_visible="true" follows="left|top|right" |
538 | font="SansSerifSmall" h_pad="0" halign="center" height="16" | 538 | font="SansSerifSmall" h_pad="0" halign="center" height="16" |
539 | left_delta="0" mouse_opaque="true" name="BHText10" v_pad="0" width="10"> | 539 | left_delta="0" mouse_opaque="true" name="BHText10" v_pad="0" width="10"> |
540 | D | 540 | D |
541 | </text> | 541 | </text> |
542 | <slider bottom="-117" can_edit_text="false" control_name="WLCloudDetailX" | 542 | <slider bottom="-117" can_edit_text="false" control_name="WLCloudDetailX" |
543 | decimal_digits="2" follows="left" height="10" increment="0.01" | 543 | decimal_digits="2" follows="left" height="10" increment="0.01" |
544 | initial_val="0.5" label="" left="259" max_val="1" min_val="0" | 544 | initial_val="0.5" label="" left="259" max_val="1" min_val="0" |
545 | mouse_opaque="true" name="WLCloudDetailX" show_text="true" value="0.5" | 545 | mouse_opaque="true" name="WLCloudDetailX" show_text="true" value="0.5" |
546 | width="200" /> | 546 | width="200" /> |
547 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDetailY" | 547 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDetailY" |
548 | decimal_digits="2" follows="left" height="10" increment="0.01" | 548 | decimal_digits="2" follows="left" height="10" increment="0.01" |
549 | initial_val="0.5" label="" left="259" max_val="1" min_val="0" | 549 | initial_val="0.5" label="" left="259" max_val="1" min_val="0" |
550 | mouse_opaque="true" name="WLCloudDetailY" show_text="true" value="0.5" | 550 | mouse_opaque="true" name="WLCloudDetailY" show_text="true" value="0.5" |
551 | width="200" /> | 551 | width="200" /> |
552 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDetailDensity" | 552 | <slider bottom_delta="-11" can_edit_text="false" control_name="WLCloudDetailDensity" |
553 | decimal_digits="2" follows="left" height="10" increment="0.01" | 553 | decimal_digits="2" follows="left" height="10" increment="0.01" |
554 | initial_val="1.0" label="" left="259" max_val="1" min_val="0" | 554 | initial_val="1.0" label="" left="259" max_val="1" min_val="0" |
555 | mouse_opaque="true" name="WLCloudDetailDensity" show_text="true" | 555 | mouse_opaque="true" name="WLCloudDetailDensity" show_text="true" |
556 | value="1.0" width="200" /> | 556 | value="1.0" width="200" /> |
557 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 557 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
558 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" | 558 | bottom="-20" drop_shadow_visible="true" follows="left|top|right" |
559 | font="SansSerif" h_pad="0" halign="left" height="16" | 559 | font="SansSerif" h_pad="0" halign="left" height="16" |
560 | left="480" mouse_opaque="true" name="WLCloudScrollXText" v_pad="0" | 560 | left="480" mouse_opaque="true" name="WLCloudScrollXText" v_pad="0" |
561 | width="355"> | 561 | width="355"> |
562 | Cloud Scroll X | 562 | Cloud Scroll X |
563 | </text> | 563 | </text> |
564 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 564 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
565 | left="605" name="WLCloudScrollXHelp" width="18" /> | 565 | left="605" name="WLCloudScrollXHelp" width="18" /> |
566 | <check_box control_name="WLCloudLockX" follows="left" font="SansSerifSmall" height="16" | 566 | <check_box control_name="WLCloudLockX" follows="left" font="SansSerifSmall" height="16" |
567 | initial_value="false" label="Lock" left="625" mouse_opaque="true" | 567 | initial_value="false" label="Lock" left="625" mouse_opaque="true" |
568 | name="WLCloudLockX" width="200" /> | 568 | name="WLCloudLockX" width="200" /> |
569 | <slider bottom_delta="-15" can_edit_text="false" control_name="WLCloudScrollX" | 569 | <slider bottom_delta="-15" can_edit_text="false" control_name="WLCloudScrollX" |
570 | decimal_digits="2" follows="left" height="10" increment="0.01" | 570 | decimal_digits="2" follows="left" height="10" increment="0.01" |
571 | initial_val="0.5" label="" left="494" max_val="10" min_val="-10" | 571 | initial_val="0.5" label="" left="494" max_val="10" min_val="-10" |
572 | mouse_opaque="true" name="WLCloudScrollX" show_text="true" value="0.0" | 572 | mouse_opaque="true" name="WLCloudScrollX" show_text="true" value="0.0" |
573 | width="200" /> | 573 | width="200" /> |
574 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | 574 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" |
575 | bottom="-60" drop_shadow_visible="true" follows="left|top|right" | 575 | bottom="-60" drop_shadow_visible="true" follows="left|top|right" |
576 | font="SansSerif" h_pad="0" halign="left" height="16" | 576 | font="SansSerif" h_pad="0" halign="left" height="16" |
577 | left="480" mouse_opaque="true" name="WLCloudScrollYText" v_pad="0" | 577 | left="480" mouse_opaque="true" name="WLCloudScrollYText" v_pad="0" |
578 | width="355"> | 578 | width="355"> |
579 | Cloud Scroll Y | 579 | Cloud Scroll Y |
580 | </text> | 580 | </text> |
581 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" | 581 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" |
582 | left="605" name="WLCloudScrollYHelp" width="18" /> | 582 | left="605" name="WLCloudScrollYHelp" width="18" /> |
583 | <check_box control_name="WLCloudLockY" follows="left" font="SansSerifSmall" height="16" | 583 | <check_box control_name="WLCloudLockY" follows="left" font="SansSerifSmall" height="16" |
584 | initial_value="false" label="Lock" left="625" mouse_opaque="true" | 584 | initial_value="false" label="Lock" left="625" mouse_opaque="true" |
585 | name="WLCloudLockY" width="200" /> | 585 | name="WLCloudLockY" width="200" /> |
586 | <slider bottom_delta="-15" can_edit_text="false" control_name="WLCloudScrollY" | 586 | <slider bottom_delta="-15" can_edit_text="false" control_name="WLCloudScrollY" |
587 | decimal_digits="2" follows="left" height="10" increment="0.01" | 587 | decimal_digits="2" follows="left" height="10" increment="0.01" |
588 | initial_val="0.5" label="" left="494" max_val="10" min_val="-10" | 588 | initial_val="0.5" label="" left="494" max_val="10" min_val="-10" |
589 | mouse_opaque="true" name="WLCloudScrollY" show_text="true" value="0.0" | 589 | mouse_opaque="true" name="WLCloudScrollY" show_text="true" value="0.0" |
590 | width="200" /> | 590 | width="200" /> |
591 | <check_box bottom="-120" control_name="DrawClassicClouds" follows="left" | 591 | <check_box bottom="-120" control_name="DrawClassicClouds" follows="left" |
592 | font="SansSerifSmall" height="16" initial_value="false" | 592 | font="SansSerifSmall" height="16" initial_value="false" |
593 | label="Draw Classic Clouds" left="480" mouse_opaque="true" | 593 | label="Draw Classic Clouds" left="480" mouse_opaque="true" |
594 | name="DrawClassicClouds" width="200" /> | 594 | name="DrawClassicClouds" width="200" /> |
595 | <button bottom="-102" follows="left|top" font="SansSerifSmall" height="18" label="?" | 595 | <button bottom="-102" follows="left|top" font="SansSerifSmall" height="18" label="?" |
596 | left="608" name="WLClassicCloudsHelp" width="18" /> | 596 | left="608" name="WLClassicCloudsHelp" width="18" /> |
597 | </panel> | 597 | </panel> |
598 | </tab_container> | 598 | </tab_container> |
599 | <button bottom="4" enabled="true" font="SansSerif" halign="center" height="20" | ||
600 | label="Day Cycle Editor" label_selected="Day Cycle Editor" | ||
601 | right="-10" mouse_opaque="true" name="WLDayCycleMenuButton" | ||
602 | scale_image="true" width="150" /> | ||
599 | <string name="WLDefaultSkyNames"> | 603 | <string name="WLDefaultSkyNames"> |
600 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | 604 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality |
601 | </string> | 605 | </string> |