Skip to content

Commit

Permalink
Merge pull request #517 from peedeeboy/bugfix/scenecomposer_grid
Browse files Browse the repository at this point in the history
Make Scene Composer grid symmetrical
  • Loading branch information
tonihele authored Jul 19, 2023
2 parents d334e9a + 088cb96 commit b6cd957
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ protected final void initTools() {
//cursor.attachChild(cursorArrowZ);

//grid
grid = new Geometry("grid", new Grid(20, 20, 1.0f));
grid = new Geometry("grid", new Grid(21, 21, 1.0f));
grid.setMaterial(grayMat);
grid.setLocalTranslation(-10, 0, -10);
grid.center().move(Vector3f.ZERO);
SceneApplication.getApplication().enqueue(new Callable<Object>() {
@Override
public Object call() throws Exception {
Expand Down

0 comments on commit b6cd957

Please sign in to comment.