Skip to content

Commit

Permalink
chore: made blue oopn particles lighter.
Browse files Browse the repository at this point in the history
  • Loading branch information
freemo committed Oct 22, 2017
1 parent b06f0b7 commit 6aadd71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/aparapi/examples/oopnbody/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public NBodyKernel(Range _range) {
// divide into two 'spheres of bodies' by adjusting x
if ((body % 2) == 0) {
x += maxDist * 10.0f;
bodies[body] = new Body(x, y, z, 0.1f, false);
bodies[body] = new Body(x, y, z, 0.01f, false);
} else {
bodies[body] = new Body(x, y, z, 1f, true);
}
Expand Down

0 comments on commit 6aadd71

Please sign in to comment.