Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion jme3-effects/src/main/java/com/jme3/water/WaterFilter.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2021 jMonkeyEngine
* Copyright (c) 2009-2023 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -516,6 +516,15 @@ public Spatial getReflectionScene() {
return reflectionScene;
}

/**
* Gets the view port used to render reflection scene.
*
* @return the reflection view port.
*/
public ViewPort getReflectionView() {
return reflectionView;
}

/**
* returns the waterTransparency value
* @return the transparency value
Expand Down