Package io.tlf.jme.jfx.injfx.processor
Interface FrameTransferSceneProcessor
-
- All Superinterfaces:
com.jme3.post.SceneProcessor
public interface FrameTransferSceneProcessor extends com.jme3.post.SceneProcessorThe interface for implementing frame transfer processor.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFrameTransferSceneProcessor.TransferMode
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FrameTransferSceneProcessor.TransferModegetTransferMode()Set the transfer mode.booleanisEnabled()Is enabled boolean.booleanisMain()Is main boolean.voidreshape()Reshape a screen.voidsetEnabled(boolean enabled)Sets enabled.voidsetTransferMode(FrameTransferSceneProcessor.TransferMode transferMode)Get the transfer mode.
-
-
-
Method Detail
-
isMain
boolean isMain()
Is main boolean.- Returns:
- if this processor is main.
-
isEnabled
boolean isEnabled()
Is enabled boolean.- Returns:
- true if this processor is enabled.
-
setEnabled
void setEnabled(boolean enabled)
Sets enabled.- Parameters:
enabled- true if this processor is enabled.
-
reshape
void reshape()
Reshape a screen.
-
getTransferMode
FrameTransferSceneProcessor.TransferMode getTransferMode()
Set the transfer mode.- Returns:
- the transfer mode.
-
setTransferMode
void setTransferMode(FrameTransferSceneProcessor.TransferMode transferMode)
Get the transfer mode.- Parameters:
transferMode- the transfer mode.
-
-