Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function update(float $dt = null): IFrame |
||
24 | { |
||
25 | if ($this->progressValue->isFinished()) { |
||
26 | if ($this->finishedDelay < 0) { |
||
27 | return FrameFactory::createEmpty(); |
||
28 | } |
||
29 | $this->finishedDelay -= $dt ?? 0.0; |
||
30 | } |
||
31 | $v = $this->createSteps($this->progressValue); |
||
32 | return |
||
33 | FrameFactory::create($v); |
||
34 | } |
||
42 |