animaflow.Timeline
O motor de orquestração temporal de animações, pacotes e streams de partículas.
animaflow.core.timeline.Timeline
dataclass
Sequence of animated actions describing the narrative.
Source code in src/animaflow/core/timeline.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | |
actions: List[TimelineAction] = field(default_factory=list)
class-attribute
instance-attribute
__init__(actions: List[TimelineAction] = list()) -> None
reveal_sequence(delay_per_item: float = 0.3) -> Timeline
reveal_all(duration: float = 0.8) -> Timeline
send_packet(from_node: Any, to_node: Any, label: Optional[str] = None, duration: float = 1.0) -> Timeline
Source code in src/animaflow/core/timeline.py
stream_packets(from_node: Optional[Any] = None, to_node: Optional[Any] = None, count: int = 5, speed: float = 0.65, duration: float = 2.5, color: Optional[str] = None) -> Timeline
Animates a continuous, periodic stream of particle balls flowing across an edge (or all edges).