mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:19:54 +00:00
Setting "Scene Drops" rename "3D Scene Editing"
This commit is contained in:
parent
758ccac75a
commit
17e01ca336
4 changed files with 7 additions and 7 deletions
|
@ -230,7 +230,7 @@ void CSMPrefs::State::declare()
|
|||
EnumValues landeditOutsideVisibleCell;
|
||||
landeditOutsideVisibleCell.add (showAndLandEdit).add (dontLandEdit);
|
||||
|
||||
declareCategory ("Scene Drops");
|
||||
declareCategory ("3D Scene Editing");
|
||||
declareInt ("distance", "Drop Distance", 50).
|
||||
setTooltip ("If an instance drop can not be placed against another object at the "
|
||||
"insert point, it will be placed by this distance from the insert point instead");
|
||||
|
|
|
@ -551,7 +551,7 @@ void CSVRender::InstanceMode::dropEvent (QDropEvent* event)
|
|||
|
||||
if (noCell)
|
||||
{
|
||||
std::string mode = CSMPrefs::get()["Scene Drops"]["outside-drop"].toString();
|
||||
std::string mode = CSMPrefs::get()["3D Scene Editing"]["outside-drop"].toString();
|
||||
|
||||
// target cell does not exist
|
||||
if (mode=="Discard")
|
||||
|
@ -585,7 +585,7 @@ void CSVRender::InstanceMode::dropEvent (QDropEvent* event)
|
|||
{
|
||||
// target cell exists, but is not shown
|
||||
std::string mode =
|
||||
CSMPrefs::get()["Scene Drops"]["outside-visible-drop"].toString();
|
||||
CSMPrefs::get()["3D Scene Editing"]["outside-visible-drop"].toString();
|
||||
|
||||
if (mode=="Discard")
|
||||
return;
|
||||
|
|
|
@ -428,7 +428,7 @@ bool CSVRender::TerrainTextureMode::allowLandTextureEditing(std::string cellId)
|
|||
|
||||
if (noCell)
|
||||
{
|
||||
std::string mode = CSMPrefs::get()["Scene Drops"]["outside-landedit"].toString();
|
||||
std::string mode = CSMPrefs::get()["3D Scene Editing"]["outside-landedit"].toString();
|
||||
|
||||
// target cell does not exist
|
||||
if (mode=="Discard")
|
||||
|
@ -460,7 +460,7 @@ bool CSVRender::TerrainTextureMode::allowLandTextureEditing(std::string cellId)
|
|||
{
|
||||
// target cell exists, but is not shown
|
||||
std::string mode =
|
||||
CSMPrefs::get()["Scene Drops"]["outside-visible-landedit"].toString();
|
||||
CSMPrefs::get()["3D Scene Editing"]["outside-visible-landedit"].toString();
|
||||
|
||||
if (mode=="Discard")
|
||||
return false;
|
||||
|
@ -475,7 +475,7 @@ bool CSVRender::TerrainTextureMode::allowLandTextureEditing(std::string cellId)
|
|||
|
||||
if (noLand)
|
||||
{
|
||||
std::string mode = CSMPrefs::get()["Scene Drops"]["outside-landedit"].toString();
|
||||
std::string mode = CSMPrefs::get()["3D Scene Editing"]["outside-landedit"].toString();
|
||||
|
||||
// target cell does not exist
|
||||
if (mode=="Discard")
|
||||
|
|
|
@ -445,7 +445,7 @@ CSVRender::WorldspaceHitResult CSVRender::WorldspaceWidget::mousePick (const QPo
|
|||
|
||||
// Default placement
|
||||
direction.normalize();
|
||||
direction *= CSMPrefs::get()["Scene Drops"]["distance"].toInt();
|
||||
direction *= CSMPrefs::get()["3D Scene Editing"]["distance"].toInt();
|
||||
|
||||
WorldspaceHitResult hit = { false, 0, 0, 0, 0, start + direction };
|
||||
return hit;
|
||||
|
|
Loading…
Reference in a new issue