Scene
Overview
The JavaFX Scene class is the root for all content in a scene graph. The background of the scene is filled as specified by the fill variable. The set of Nodes in the content sequence is then rendered on the scene.
For example:
Profile: common
Variable Summary
| name | type | Default Value | description |
|---|---|---|---|
| width | Number |
The width of this |
|
| height | Number |
The height of this |
|
| camera | Camera | null |
Specifies the type of camera use for rendering this Note: this is a conditional feature. See javafx.runtime.ConditionalFeature#SCENE3D ConditionalFeature.SCENE3D for more information. |
| fill | Paint | WHITE |
Defines the background fill of this |
| content | Node | [] |
The sequence of |
| cursor | Cursor | null |
Defines the mouse cursor for this |
| stylesheets | String |
A series string urls linking to the stylesheets to use with this scene's contents. |
