This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bps 1 | |
d1 $ sound "[bd cp, ~ hh*2] [future hh:7/2]" | |
|+| pan triwave1 | |
|+| accelerate "-1" | |
d2 $ every 2 (0.25 <~) $ striate 4 (sound "odx:1/2 ~ tabla:3 [feel:4]/2") | |
d3 $ every 4 (0.5 ~>) $ striate 2 (sound "jvbass jvbass:3 jvbass:6, jvbass:3*3") | |
|+| shape triwave1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Якщо ми створюємо власний сеттер і щось змінюємо в середині, то треба цю зміну дублювати у ініціалізації. Наприклад: | |
- (void)setFreeformGrid:(BOOL)freeformGrid | |
{ | |
if (_freeformGrid != freeformGrid) | |
{ | |
_freeformGrid = freeformGrid; | |
self.gridView.isGuidesVisible = _freeformGrid; // Цей шматок коду треба додати і в ініціалізацію, наприклад у метод - commonInit: | |
} | |
} |
NewerOlder