Example usage for javafx.scene.effect BlendMode SRC_OVER

List of usage examples for javafx.scene.effect BlendMode SRC_OVER

Introduction

In this page you can find the example usage for javafx.scene.effect BlendMode SRC_OVER.

Prototype

BlendMode SRC_OVER

To view the source code for javafx.scene.effect BlendMode SRC_OVER.

Click Source Link

Document

The top input is blended over the bottom input.

Usage

From source file:com.github.vatbub.tictactoe.view.Main.java

private void fadeWinLineGroup() {
    fadeNode(winLineGroup, 0, () -> {
        winLineGroup.setBlendMode(BlendMode.SRC_OVER);
        //noinspection SuspiciousMethodCalls
        refreshedNodes.removeAll(winLineGroup.getChildren());
        winLineGroup.getChildren().clear();
    });/*from   w  ww .j  a  va2  s.c  om*/
}