Determinates whenever GPU particles simulation should be enabled for a given build. The options. True if use GPU particles, otherwise false.
(BuildOptions options)
| 15 | /// <param name="options">The options.</param> |
| 16 | /// <returns>True if use GPU particles, otherwise false.</returns> |
| 17 | public static bool UseGPU(BuildOptions options) |
| 18 | { |
| 19 | // TODO: disable GPU particles support in build for low-end platforms |
| 20 | return true; |
| 21 | } |
| 22 | |
| 23 | /// <inheritdoc /> |
| 24 | public override void Setup(BuildOptions options) |