Included in Oceanology Pro and Oceanology Lite.
An authoring kit for hydraulics: drop a Force actor set to Vortex over a lake and the water genuinely rotates around it. Sources feed water in, drains empty it, currents push boats downstream.
Hydraulic features you place and tune in the details panel instead of writing a Blueprint that fires an impulse every tick. Three typed components, Source, Force and Wave, each with a matching placeable actor, describe a persistent contribution to a shallow water simulation: how much water enters or leaves, which way it is pushed, and what shape the surface should be driven toward. None of them tick. A world coordinator gathers them on the solver's own cadence, so a hundred placed features cost nothing per rendered frame.
Each contributor resolves exactly one target simulation: automatically from its own location, or explicitly by water body, water zone or simulation actor. The coordinator builds one immutable, deterministic snapshot per solver dispatch and then advances lifetimes only for the records that were actually accepted into it. That distinction matters for timing. Duration counts simulated seconds this contributor genuinely influenced, never wall clock, so a timed feature does not burn its life during a load hitch, while the game is paused, or while an editor preview is stopped, and slow motion stretches it correctly instead of desynchronising it. Continuous entries are re-evaluated on every numerical substep; one-shot entries are applied during the first substep only and acknowledged by event sequence, so nudging the actor in the editor cannot re-fire them.
Footprints are an ellipse, a box, or the entire simulation, oriented by the component's own yaw, with half extents in centimeters and a world-space edge feather. Sort priority decides evaluation order, which genuinely matters now that the operations are not all commutative, and stable identity breaks ties so the same scene produces the same result frame after frame.
| Oceanology NextGen | Oceanology Pro | |
|---|---|---|
| Available in NextGen | Nothing comparable. With no fluid solver in the plugin there was no hydraulic state to contribute to | A typed contributor system layered on the native shallow water solver |
| Component model | The legacy Water Modifier: one untyped disturbance with radius, axis ratio, height offset, flow velocity, swirl and foam | Three typed components whose mode is the operation, each with its own GPU payload and budget |
| Repeating a sustained feature | Additive submission every tick, so amplitude pulsed with tick rate and drifted with frame rate | Modes that converge: relax to a level, target a velocity, drive a wave surface. Re-submission settles on a shape instead of accumulating |
| Budget | Shared the solver's 16 impulse slots with automatic wakes and gameplay hits | Independent per-type budgets of 32 sources, 32 forces and 32 waves per simulation, leaving the impulse slots free for gameplay |
| Targeting | Whichever simulation happened to contain the modifier | Automatic at location, or pinned explicitly to a water body, a water zone or a named simulation actor |
| Types | Source, Force and Wave, as components or as placeable Oceanology Shallow Water Source, Force and Wave actors |
| Source modes | Add Water Depth, Remove Water Depth, Relax To Rest Surface |
| Force modes | Directional, Radial, Vortex, Target Velocity |
| Wave modes | Continuous, One Shot Pulse |
| Footprint | Ellipse, Box or Full Simulation; half extents default 300 by 300 cm; edge softness default 50 cm |
| Source defaults | Depth rate 50 cm/s, relaxation rate 4 per second, injected velocity in cm/s, normalized foam rate per simulated second |
| Force defaults | Acceleration 100 cm/s^2, target velocity response 4 per second |
| Wave defaults | Amplitude 25 cm, wavelength 600 cm, 1 Hz, response rate 4 per second |
| Lifetime | Negative runs forever, positive is that many simulated seconds, exactly zero fires a single one-shot |
| Per-simulation budget | Up to 32 sources, 32 forces and 32 waves, each continuous entry evaluated on every numerical substep |
| Ordering | Sort priority first, stable identity as the tie-break |
This is one entry on the Galidar roadmap. For what already shipped in each release, see the Changelog.