diff --git a/Templates/BaseGame/game/tools/meshRoadEditor/main.tscript b/Templates/BaseGame/game/tools/meshRoadEditor/main.tscript index 68e00288a..3fca5a220 100644 --- a/Templates/BaseGame/game/tools/meshRoadEditor/main.tscript +++ b/Templates/BaseGame/game/tools/meshRoadEditor/main.tscript @@ -209,8 +209,8 @@ function MeshRoadEditorPlugin::initSettings( %this ) EditorSettings.setDefaultValue( "DefaultWidth", "10" ); EditorSettings.setDefaultValue( "DefaultDepth", "5" ); EditorSettings.setDefaultValue( "DefaultNormal", "0 0 1" ); - EditorSettings.setDefaultValue( "HoverSplineColor", "255 0 0 255" ); - EditorSettings.setDefaultValue( "SelectedSplineColor", "0 255 0 255" ); + EditorSettings.setDefaultValue( "HoverSplineColor", "255 0 255 255" ); + EditorSettings.setDefaultValue( "SelectedSplineColor", "192 0 192 255" ); EditorSettings.setDefaultValue( "HoverNodeColor", "255 255 255 255" ); //<-- Not currently used EditorSettings.setDefaultValue( "TopMaterialName", "DefaultRoadMaterialTop" ); EditorSettings.setDefaultValue( "BottomMaterialName", "DefaultRoadMaterialOther" ); diff --git a/Templates/BaseGame/game/tools/riverEditor/main.tscript b/Templates/BaseGame/game/tools/riverEditor/main.tscript index 3f580af76..36168a4e9 100644 --- a/Templates/BaseGame/game/tools/riverEditor/main.tscript +++ b/Templates/BaseGame/game/tools/riverEditor/main.tscript @@ -222,8 +222,8 @@ function RiverEditorPlugin::initSettings( %this ) EditorSettings.setDefaultValue( "DefaultWidth", "10" ); EditorSettings.setDefaultValue( "DefaultDepth", "5" ); EditorSettings.setDefaultValue( "DefaultNormal", "0 0 1" ); - EditorSettings.setDefaultValue( "HoverSplineColor", "255 0 0 255" ); - EditorSettings.setDefaultValue( "SelectedSplineColor", "0 255 0 255" ); + EditorSettings.setDefaultValue( "HoverSplineColor", "255 0 255 255" ); + EditorSettings.setDefaultValue( "SelectedSplineColor", "192 0 192 255" ); EditorSettings.setDefaultValue( "HoverNodeColor", "255 255 255 255" ); //<-- Not currently used EditorSettings.endGroup(); diff --git a/Templates/BaseGame/game/tools/roadEditor/main.tscript b/Templates/BaseGame/game/tools/roadEditor/main.tscript index 6b2fbcf90..2777c958d 100644 --- a/Templates/BaseGame/game/tools/roadEditor/main.tscript +++ b/Templates/BaseGame/game/tools/roadEditor/main.tscript @@ -204,8 +204,8 @@ function RoadEditorPlugin::initSettings( %this ) EditorSettings.beginGroup( "RoadEditor", true ); EditorSettings.setDefaultValue( "DefaultWidth", "10" ); - EditorSettings.setDefaultValue( "HoverSplineColor", "255 0 0 255" ); - EditorSettings.setDefaultValue( "SelectedSplineColor", "0 255 0 255" ); + EditorSettings.setDefaultValue( "HoverSplineColor", "255 0 255 255" ); + EditorSettings.setDefaultValue( "SelectedSplineColor", "192 0 192 255" ); EditorSettings.setDefaultValue( "HoverNodeColor", "255 255 255 255" ); //<-- Not currently used EditorSettings.setDefaultValue( "MaterialName", "DefaultDecalRoadMaterial" );