mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Merge pull request #1589 from Azaezel/alpha41/splineColor
Some checks failed
Linux Build / ${{matrix.config.name}} (map[build_type:Release cc:gcc cxx:g++ generator:Ninja name:Ubuntu Latest GCC]) (push) Has been cancelled
MacOSX Build / ${{matrix.config.name}} (map[build_type:Release cc:clang cxx:clang++ generator:Ninja name:MacOSX Latest Clang]) (push) Has been cancelled
Windows Build / ${{matrix.config.name}} (map[build_type:Release cc:cl cxx:cl environment_script:C:/Program Files (x86)/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat generator:Visual Studio 17 2022 name:Windows Latest MSVC]) (push) Has been cancelled
Some checks failed
Linux Build / ${{matrix.config.name}} (map[build_type:Release cc:gcc cxx:g++ generator:Ninja name:Ubuntu Latest GCC]) (push) Has been cancelled
MacOSX Build / ${{matrix.config.name}} (map[build_type:Release cc:clang cxx:clang++ generator:Ninja name:MacOSX Latest Clang]) (push) Has been cancelled
Windows Build / ${{matrix.config.name}} (map[build_type:Release cc:cl cxx:cl environment_script:C:/Program Files (x86)/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat generator:Visual Studio 17 2022 name:Windows Latest MSVC]) (push) Has been cancelled
spline color visibility tweak
This commit is contained in:
commit
d563583feb
|
|
@ -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" );
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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" );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue