Small tweak.

This commit is contained in:
Relintai 2025-02-03 23:02:41 +01:00
parent c3b468027a
commit bb59a03e06
2 changed files with 3 additions and 3 deletions

View File

@ -203,7 +203,7 @@ TerrainWorldEditor::TerrainWorldEditor() {
_editor = NULL;
_tool_mode = TOOL_MODE_ADD;
_picker_mode = false;
_isolevel_picker_mode = false;
_brush_allow_create_chunks = true;
_brush_size = 10;
_brush_smoothness = 10;
@ -217,7 +217,7 @@ TerrainWorldEditor::TerrainWorldEditor(EditorNode *p_editor) {
_current_isolevel = 255;
_channel_isolevel = -1;
_picker_mode = false;
_isolevel_picker_mode = false;
_brush_allow_create_chunks = true;
_brush_size = 10;
_brush_smoothness = 10;

View File

@ -91,7 +91,7 @@ private:
ISOLEVEL_BRUSH_TYPE_SMOOTH, // Icon: Blend
};
bool _picker_mode;
bool _isolevel_picker_mode;
bool _brush_allow_create_chunks;
float _brush_size;
float _brush_smoothness;