Normand Briere
2019-08-22 6a145f6c81dfcbe0653eda27d042efb48daa7512
ObjEditor.java
....@@ -2370,7 +2370,7 @@
23702370 {
23712371 public void mouseClicked(MouseEvent e)
23722372 {
2373
- borderfadeField.setFloat(0.5);
2373
+ borderfadeField.setFloat(0.4);
23742374 opacityField.setFloat(0.75);
23752375
23762376 materialtouched = true;
....@@ -2443,7 +2443,7 @@
24432443 {
24442444 public void mouseClicked(MouseEvent e)
24452445 {
2446
- parallaxField.setFloat(0.25);
2446
+ parallaxField.setFloat(0.125);
24472447
24482448 materialtouched = true;
24492449 applySelf();
....@@ -2457,7 +2457,7 @@
24572457 {
24582458 public void mouseClicked(MouseEvent e)
24592459 {
2460
- parallaxField.setFloat(0.255);
2460
+ parallaxField.setFloat(0.13);
24612461
24622462 materialtouched = true;
24632463 applySelf();
....@@ -2471,7 +2471,7 @@
24712471 {
24722472 public void mouseClicked(MouseEvent e)
24732473 {
2474
- parallaxField.setFloat(0.265);
2474
+ parallaxField.setFloat(0.14);
24752475
24762476 materialtouched = true;
24772477 applySelf();
....@@ -2727,7 +2727,7 @@
27272727 cGridBag parallax = new cGridBag();
27282728 parallax.add(parallaxLabel = new JLabel("Parallax")); // , aConstraints);
27292729 parallaxLabel.setHorizontalAlignment(SwingConstants.TRAILING);
2730
- parallax.add(parallaxField = new cNumberSlider(this, 0.001, 0.5, -0.25)); // , aConstraints);
2730
+ parallax.add(parallaxField = new cNumberSlider(this, 0.001, 0.25, -0.125)); // , aConstraints);
27312731 colorSection.add(parallax);
27322732
27332733 //panel.add(new JSeparator());
....@@ -3781,7 +3781,7 @@
37813781 shadowField.setFloat(mat.shadow);
37823782 textureField.setFloat(mat.texture);
37833783 opacityField.setFloat(mat.opacity);
3784
- parallaxField.setFloat(mat.parallax + 0.25f);
3784
+ parallaxField.setFloat(mat.parallax + 0.125f);
37853785 fakedepthField.setFloat(mat.fakedepth);
37863786 shadowbiasField.setFloat(mat.shadowbias);
37873787 bumpField.setInteger(1); // dec 2013
....@@ -5006,7 +5006,7 @@
50065006 current.shadow = (float) shadowField.getFloat();
50075007 current.texture = (float) textureField.getFloat();
50085008 current.opacity = (float) opacityField.getFloat();
5009
- current.parallax = (float) parallaxField.getFloat() - 0.25f;
5009
+ current.parallax = (float) parallaxField.getFloat() - 0.125f;
50105010 current.fakedepth = (float) fakedepthField.getFloat();
50115011 current.shadowbias = (float) shadowbiasField.getFloat();
50125012