javafx.scene.effect.Effect
This node has no attributes
An effect
Defines the bumpInput for a Lighting effect.
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: 20, y: 120, content: "Light Effect", font: "bold 90pt", fill: red) {
lighting(surfaceScale: 5.0) {
distant(azimuth: -135)
bumpInput() {
dropShadow()
}
contentInput() {
glow()
}
}
}
}
}
});
|