â›‘ī¸Potential Issues

Things to be aware of and avoid...

Adding objects in bulk to Timeflow

Multiple objects can certainly be added at once, however avoid adding large selections or entire scenes, otherwise performance and load times may be affected. As a general rule, the fewer components used in a scene the better.

Downgrading Unity versions

You may see the following warning when downgrading a project using Timeflow:

Due to changes in Unity serialization, some Timeflow data may be lost if a project is opened with an earlier version of Unity, showing the error above. This may also occur when importing a package created with a later version.

Creating or importing huge numbers of keyframes

Large amounts of data such as recordings or baked animation can bog down the editor and runtime. These may be better suited using Unity animation clips. There is no defined upper limit for channels or keyframes in Timeflow, so it is at your discretion, though generally speaking unless you're importing or generating data, or heavily copy-pasting, you're unlikely to run into any issues.

Conflicting shared materials

Any time shared materials are animated and used across multiple objects or scenes, different results may appear in edit mode than during runtime. This is due to the way Unity instantiates material instances.

Understanding this, it is therefore necessary to link material animations across multiple objects using channel links, or a more efficient approach is to use shader properties to animate materials shared across large sets of objects without requiring additional material assets.

Animating editor-only or obscure properties

Timeflow exposes properties within components that sometimes may be ill advised to animate directly. Any properties related to internal functioning or editor-only features may cause unpredictable results when animated. This might circumvent certain steps required in setup and cause problems, bugs, or errors. When in doubt, look in the Unity scripting reference or at the source code in question.

For special cases when parameters cannot be directly targeted, Timeflow utilizes Property Handlers for a customized approach. New handlers may be created by developers as needed to work with custom properties or attributes not directly available.

Large transform coordinates ( > 1000 units)

Although Unity's coordinate system does accept large position values in world space that exceed well beyond 1000 units, anomalous issues can occur (filed as bug report: UUM-19013). This is not related to or caused by Timeflow, but rather due to rounding errors in Unity's underlying transformation matrices. This can manifest as a jitter or shake whenever an object is moving and rotating with large transform coordinates. The larger the coordinates, the more pronounced the anomaly becomes. This primarily manifests in lights and cameras resulting in shaky movement or flickering lights and shadows.

For more, see Known Issues

Last updated