File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
source/LottieData/Optimization Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,18 @@ namespace CommunityToolkit.WinUI.Lottie.LottieData.Optimization
11
11
/// <summary>
12
12
/// Represents directed acyclic graph of layer groups.
13
13
/// Node1 is child of Node2 iff they have time ranges that intersect and Node1 goes after Node2 in z-order.
14
+ ///
15
+ /// +Z
16
+ /// |---------------------------------------------------|
17
+ /// |--Node1--|
18
+ /// |---Node2---| Time -->
19
+ /// |----Node3----|
20
+ /// |---------------------------------------------------|
21
+ /// -Z
22
+ ///
23
+ /// In this example Node1 is a child of Node2, but not of Node3.
24
+ /// Nodes can have multiple parents. Optimizations can be made to graphs that don't overlap in
25
+ /// time, which is often the case when a single Lottie file contains multiple animations.
14
26
/// </summary>
15
27
#if PUBLIC_LottieData
16
28
public
You can’t perform that action at this time.
0 commit comments