You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains the JavaFX renderer for Processing 4, also known as `FX2D`.
3
+
This repository contains the JavaFX renderer for Processing 4, also known as `FX2D`.
4
4
5
5
The JavaFX binaries have grown very large in size so this was a necessary step to avoid making the Processing download excessively large, given that not everyone uses JavaFX. More discussion/explanation [here](https://github.com/processing/processing4/issues/348).
6
6
7
-
This version of the JavaFX library will be required for `FX2D` sketches starting with 4.0 beta 4.
7
+
This version of the JavaFX library will be required for `FX2D` sketches starting with 4.0 beta 4.
8
+
9
+
10
+
## Download Size
11
+
12
+
The build script creates a very large download (hundreds of megabytes), because Processing supports several platforms (3 officially, 3 more unofficially) and we want to make it easy to use all of them. This is an acceptable tradeoff for a standalone library like this, but if you want a smaller build, you have options:
13
+
14
+
1. Disable `<antcall target="retrieve-gluon">` stanzas for platforms you don't care about.
15
+
16
+
2. Un-comment the `<!-- <exclude name="**/*jfxwebkit.*" /> -->` line so that the WebKit library is removed.
17
+
18
+
These are not done by default because we've seen projects that (1) run on all those platforms, and (2) use the full browser implementation available with the WebKit support. Again, because this is an optional download, this seems the correct tradeoff.
0 commit comments