Skip to content

Commit

Permalink
comments again
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 22, 2024
1 parent 803bd2d commit ec6ef19
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static void main(String[] arguments) {
public void acorusInit() {
super.acorusInit();

// Set up Bullet physics (with debug enabled).
// Set up soft-body physics with debug enabled:
SoftPhysicsAppState bulletAppState = new SoftPhysicsAppState();
bulletAppState.setDebugEnabled(true);
stateManager.attach(bulletAppState);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static void main(String[] arguments) {
*/
@Override
public void simpleInitApp() {
// Set up Bullet physics (with debug enabled).
// Set up soft-body physics with debug enabled:
SoftPhysicsAppState bulletAppState = new SoftPhysicsAppState();
stateManager.attach(bulletAppState);
bulletAppState.setDebugEnabled(true); // for debug visualization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static void main(String[] arguments) {
*/
@Override
public void simpleInitApp() {
// Set up Bullet physics (with debug enabled).
// Set up soft-body physics with debug enabled:
SoftPhysicsAppState bulletAppState = new SoftPhysicsAppState();
stateManager.attach(bulletAppState);
bulletAppState.setDebugEnabled(true); // for debug visualization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static void main(String[] arguments) {
*/
@Override
public void simpleInitApp() {
// Set up Bullet physics.
// Set up soft-body physics:
SoftPhysicsAppState bulletAppState = new SoftPhysicsAppState();
stateManager.attach(bulletAppState);
//bulletAppState.setDebugEnabled(true); // for debug visualization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static void main(String[] arguments) {
*/
@Override
public void simpleInitApp() {
// Set up Bullet physics (with debug enabled).
// Set up soft-body physics with debug enabled:
SoftPhysicsAppState bulletAppState = new SoftPhysicsAppState();
stateManager.attach(bulletAppState);
bulletAppState.setDebugEnabled(true); // for debug visualization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static void main(String[] arguments) {
*/
@Override
public void simpleInitApp() {
// Set up Bullet physics (with debug enabled).
// Set up soft-body physics with debug enabled:
SoftPhysicsAppState bulletAppState = new SoftPhysicsAppState();
stateManager.attach(bulletAppState);
bulletAppState.setDebugEnabled(true); // for debug visualization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void simpleInitApp() {
ColorRGBA skyColor = new ColorRGBA(0.1f, 0.2f, 0.4f, 1f);
viewPort.setBackgroundColor(skyColor);

// Set up Bullet physics (with debug enabled).
// Set up soft-body physics with debug enabled:
SoftPhysicsAppState bulletAppState = new SoftPhysicsAppState();
stateManager.attach(bulletAppState);
bulletAppState.setDebugEnabled(true); // for debug visualization
Expand Down

0 comments on commit ec6ef19

Please sign in to comment.