Last active
October 19, 2016 14:59
-
-
Save pavelvasev/0f73163d9bf661ca326fe3ac4c133918 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
Scene { | |
id: sc | |
backgroundColor: [0,0,0] | |
Param { | |
id: xlen | |
text: "x limit " | |
value: 50 | |
min: 4 | |
} | |
Repeater { | |
model: Math.floor(1 + sc.width / xlen.value) | |
Rectangle { | |
width: xlen.value | |
height: sc.height | |
x: xlen.value * index * 2 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://viewlang.ru/code/scene.html??s=https%3A%2F%2Fgist.github.com%2Fpavelvasev%2F0f73163d9bf661ca326fe3ac4c133918