# CodeJourney_ComposerEffects

# OutDoorRoaming

For Composer Weekend Jam 19: *Effects* ([https://itch.io/jam/composer-weekend-jam-19-scoringtechnet](https://itch.io/jam/composer-weekend-jam-19-scoringtechnet)) , **Outdoor Roaming** takes ***LiveCodeLab Code*** to make an outdoor exploration inspired composition with additional effects.

## Audio

[IllestPreacha](https://soundcloud.com/llestreacha) · [OutDoorRoaming](https://soundcloud.com/llestreacha/outdoorroaming)

%[https://soundcloud.com/llestreacha/outdoorroaming] 

## LiveCodeLab Code

```javascript
y = time % 60

if y > 40
	bpm 88
	play 'tranceKick'  ,'-x-x ---x x-x- xx---xx'
	play 'beepC',      '-x-- ---- x--x xxx-'
	play 'beepA',      '--x- --xx- --x- ----'
else if y < 20
	bpm 132
	play 'tranceKick'  ,'-x-x -x-x---xx'
	play 'beepB'+ int(random 4) , 'x--x xx- -x-- -x--'
	play 'voltage',    'x-x- -x--x x-xx x-xx'
else
	bpm 110
	play 'tranceKick'  ,'-x-x---x--xx'
	play 'beepC'+ int(random 14) ,  '-x-- ---- x--x xxx-'

play "hiss" + int(random 2) ,'x--x---xx---xxx'
play "mouth" + int(random 4) ,'x--x---x'
play "penta" + int(random 10) ,'x--xx--xxx'
```
