JavaFX 3D Tutorial #9 – Moving Light Animation

In the last chapter, we saw how to add lights to the 3D scene. In this chapter, we will see how a moving light works.

You can add as many lights as you need. To animate the light sources, you can use predefined animations from javafx.animation package like TranslateTransition, RotateTransition etc or custom animations can be applied. In this example, I will write a custom rotation animation to get the following effect.

JavaFX Light Animation

Moving Light Animation

We can create the rotation effect for the light source using rotateProperty. The important thing here is to specify the axis of rotation. We have the freedom to rotate the object in 360 degrees. In this example, I am rotating light source about X Axis.

AnimationTimer will be called during each frame rendered. We can update the transform properties of objects to create smooth animation. In this example, I have increased rotation angle of light source by 1 degree during each frame.

You can speedup the animation by increasing the value ‘1’ to a higher one. Animation speed can be reduced by reducing the value.

private Node[] prepareLightSource() {
    //Create point light
	pointLight.setColor(Color.RED);
	pointLight.getTransforms().add(new Translate(0, -50, 100));
	//Set axis of rotation
	pointLight.setRotationAxis(Rotate.X_AXIS);

	//Create a small sphere to locate the light source (Light source is invisible)
	Sphere sphere = new Sphere(2);
	//Attach sphere transforms to point light. So they move/rotate together
	sphere.getTransforms().setAll(pointLight.getTransforms());
	sphere.rotateProperty().bind(pointLight.rotateProperty());
	sphere.rotationAxisProperty().bind(pointLight.rotationAxisProperty());

	//Return lights
	return new Node[]{pointLight, sphere};
}

@Override
public void start(Stage primaryStage) {
	Box box = prepareBox();

	SmartGroup group = new SmartGroup();
	group.getChildren().add(box);
	//Add light and sphere
	group.getChildren().addAll(prepareLightSource());

	Camera camera = new PerspectiveCamera(true);
	camera.setNearClip(1);
	camera.setFarClip(1000);
	camera.translateZProperty().set(-200);

	Scene scene = new Scene(group, WIDTH, HEIGHT);
	scene.setFill(Color.SILVER);
	scene.setCamera(camera);

	group.translateXProperty().set(0);
	group.translateYProperty().set(0);
	group.translateZProperty().set(0);

	initMouseControl(group, scene, primaryStage);

	primaryStage.setTitle("Genuine Coder");
	primaryStage.setScene(scene);
	primaryStage.show();

	//Create animation timer
	AnimationTimer timer = new AnimationTimer() {
	  @Override
	  public void handle(long now) {
		//Increase rotation angle by 1 degree during each frame.
		pointLight.setRotate(pointLight.getRotate() + 1);
	  }
	};
	//Start animation automatically during startup
	timer.start();
}

 

Visit JavaFX 3D Course Index Page

Comments

52 responses to “JavaFX 3D Tutorial #9 – Moving Light Animation”

  1. … [Trackback]

    […] Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  2. … [Trackback]

    […] Information to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  3. … [Trackback]

    […] Here you will find 16872 more Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  4. … [Trackback]

    […] Information to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  5. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  6. … [Trackback]

    […] Read More here to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  7. … [Trackback]

    […] Find More Info here to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  8. … [Trackback]

    […] Here you will find 79519 more Information to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  9. … [Trackback]

    […] Read More Info here on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  10. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  11. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  12. … [Trackback]

    […] Here you can find 89793 more Information to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  13. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  14. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  15. … [Trackback]

    […] There you can find 41346 additional Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  16. … [Trackback]

    […] Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  17. … [Trackback]

    […] There you can find 99712 additional Information to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  18. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  19. … [Trackback]

    […] Find More Info here on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  20. … [Trackback]

    […] There you can find 26887 more Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  21. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  22. … [Trackback]

    […] Information to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  23. … [Trackback]

    […] There you will find 48130 more Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  24. … [Trackback]

    […] Here you can find 14095 additional Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  25. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  26. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  27. … [Trackback]

    […] Find More on to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  28. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  29. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  30. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  31. … [Trackback]

    […] Info to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  32. … [Trackback]

    […] Information on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  33. … [Trackback]

    […] Find More Information here to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  34. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  35. … [Trackback]

    […] There you can find 41321 more Info on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  36. … [Trackback]

    […] Here you will find 91691 additional Information to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  37. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  38. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-3d-moving-light-animation/ […]

  39. discount androxal cheap sale

    Buy androxal online

  40. purchase enclomiphene uk suppliers

    cheap enclomiphene generic in canada

  41. get rifaximin purchase online from india

    No perscription rifaximin next day

  42. buying xifaxan overnight delivery

    cheapest buy xifaxan american express

  43. cash on delivery online prescriptions staxyn

    buying staxyn no prescription mastercard

  44. how to order avodart generic for sale

    discount avodart generic lowest price

  45. purchase dutasteride generic online usa

    how to buy dutasteride cheap online no prescription

  46. buy cheap flexeril cyclobenzaprine cost australia

    cheap flexeril cyclobenzaprine cheap where

  47. discount gabapentin using mastercard

    how to buy gabapentin buy germany

  48. order fildena generic new zealand

    how to order fildena generic available

  49. discount itraconazole generic how effective

    cheap itraconazole price uk

  50. nejlepナ。テュ lテゥkテ。rna cena za kamagra

    koupit kamagra bez pナ册dpisu platit

  51. acheter kamagra pilule pharmacie renouveler

    kamagra australie générique en ligne

Leave a Reply