Created
April 7, 2016 11:08
-
-
Save antonkartashov/a08c3e8a351f38f320408854cc1a120f to your computer and use it in GitHub Desktop.
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
screens = new ScrollComponent | |
width: 360 | |
height: 640 | |
x: 0 | |
y: 0 | |
scrollVertical: false | |
backgroundColor: "black" | |
scrnCont = new ScrollComponent | |
backgroundColor: "blue" | |
width: 360 - 30 | |
height: 640 | |
x: 15 | |
y: 15 | |
scrollHorizontal: false | |
parent: screens.content | |
rows = [] | |
for i in [0..5] | |
rows[i] = new Layer | |
backgroundColor: Utils.randomColor() | |
height: 180 | |
width: 360 - 60 | |
x: 15 | |
y: i * 180 | |
parent: scrnCont.content | |
scrnCont2 = new ScrollComponent | |
backgroundColor: "blue" | |
width: 360 - 30 | |
height: 640 | |
x: 15 + screens.width | |
y: 15 | |
scrollHorizontal: false | |
parent: screens.content | |
rows = [] | |
for i in [0..5] | |
rows[i] = new Layer | |
backgroundColor: Utils.randomColor() | |
height: 180 | |
width: 360 - 60 | |
x: 15 | |
y: i * 180 | |
parent: scrnCont2.content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment