(self)
| 122 | @define |
| 123 | class Tiles(ExampleScene): |
| 124 | def update(self): |
| 125 | ExampleScene.update(self) |
| 126 | self.state.sticky = False |
| 127 | self.state.height = 0.8 |
| 128 | self.state.offset = ( |
| 129 | 0.15 * math.cos(self.cycle), |
| 130 | 0.15 * math.sin(self.cycle), |
| 131 | ) |
| 132 | |
| 133 | @define |
| 134 | class Steady(ExampleScene): |