mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-06 14:00:39 +00:00
Sets the default grid snap size to 1 rather than 10. 1 Seems like a more neutral default value, and also makes it match the displayed '1' in the UI interface as the default as well.
This commit is contained in:
parent
78107ed546
commit
b7870c33f8
2 changed files with 2 additions and 2 deletions
|
|
@ -182,7 +182,7 @@ GizmoProfile::GizmoProfile()
|
|||
gridColor.set(255,255,255,20);
|
||||
planeDim = 500.0f;
|
||||
|
||||
gridSize.set(10,10,10);
|
||||
gridSize.set(1,1,1);
|
||||
snapToGrid = false;
|
||||
allowSnapRotations = true;
|
||||
rotationSnap = 15.0f;
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ EditorSettings.setDefaultValue( "renderInfoText", "1" );
|
|||
|
||||
EditorSettings.beginGroup( "Grid" );
|
||||
EditorSettings.setDefaultValue( "gridColor", "255 255 255 20" );
|
||||
EditorSettings.setDefaultValue( "gridSize", "10 10 10" );
|
||||
EditorSettings.setDefaultValue( "gridSize", "1 1 1" );
|
||||
EditorSettings.setDefaultValue( "snapToGrid", "0" ); //<-- Not currently used
|
||||
EditorSettings.setDefaultValue( "renderPlane", "0" );
|
||||
EditorSettings.setDefaultValue( "renderPlaneHashes", "0" );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue