Generated Object
javafx.scene.effect.Light.Point
Attributes
This node takes the attributes from the javafx.scene.effect.Light.Point class, see javafx.scene.effect.Light.Point
Content
There is no content for this node.
Usage
Defines a Point light for the Lighting effect.
Examples
| Code Block |
|---|
GroovyFX.start({
def sg = new SceneGraphBuilder(it);
sg.stage(
title: "Blend Effect Example",
x: 100, y: 100, width: 500, height:300,
visible: true,
style: "decorated",
) {
scene(fill: hsb(128, 0.5, 0.5, 0.5) ) {
text(x: 10, y: 10, content: "Light Effect", font: "bold 90pt", fill: red, textOrigin: "top") {
lighting(surfaceScale: 5.0) {
point(x: -100, y: -100, z: 50 )
}
}
}
}
});
|