diff options
Diffstat (limited to 'js/data/pi')
-rwxr-xr-x[-rw-r--r--] | js/data/pi/pi-data.js | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/js/data/pi/pi-data.js b/js/data/pi/pi-data.js index 10b33a0e..ba03c347 100644..100755 --- a/js/data/pi/pi-data.js +++ b/js/data/pi/pi-data.js | |||
@@ -10,7 +10,21 @@ var Montage = require("montage/core/core").Montage, | |||
10 | exports.PiData = Montage.create( Montage, { | 10 | exports.PiData = Montage.create( Montage, { |
11 | 11 | ||
12 | stagePi: { | 12 | stagePi: { |
13 | value: [] | 13 | value: [ |
14 | { | ||
15 | label: "Style", | ||
16 | |||
17 | Section: [ | ||
18 | [ | ||
19 | { | ||
20 | type : "chip", | ||
21 | id : "background", | ||
22 | prop: "background" | ||
23 | } | ||
24 | ] | ||
25 | ] | ||
26 | } | ||
27 | ] | ||
14 | }, | 28 | }, |
15 | 29 | ||
16 | blockPi: { | 30 | blockPi: { |
@@ -459,12 +473,14 @@ exports.PiData = Montage.create( Montage, { | |||
459 | [ | 473 | [ |
460 | { | 474 | { |
461 | type: "dropdown", | 475 | type: "dropdown", |
462 | id: "stroke", | 476 | id: "strokeMaterial", |
477 | prop: "strokeMaterial", | ||
463 | label: "Stroke", | 478 | label: "Stroke", |
464 | labelField: "_name", | 479 | labelField: "_name", |
465 | dataField: "_name", | 480 | dataField: "_name", |
466 | items : { boundObject: "this.application.ninja.appModel", boundProperty: "materials" }, | 481 | items : { boundObject: "this.application.ninja.appModel", boundProperty: "materials" }, |
467 | enabled: { boundObject: "this.controls", boundProperty: "useWebGl" } | 482 | enabled: { boundObject: "this.controls", boundProperty: "useWebGl" }, |
483 | divider : true | ||
468 | } | 484 | } |
469 | ] | 485 | ] |
470 | ] | 486 | ] |