diff options
Diffstat (limited to 'js/components/tools-properties/fill-properties.reel')
-rwxr-xr-x | js/components/tools-properties/fill-properties.reel/fill-properties.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/js/components/tools-properties/fill-properties.reel/fill-properties.js b/js/components/tools-properties/fill-properties.reel/fill-properties.js index ae136956..616badb0 100755 --- a/js/components/tools-properties/fill-properties.reel/fill-properties.js +++ b/js/components/tools-properties/fill-properties.reel/fill-properties.js | |||
@@ -10,6 +10,26 @@ var Montage = require("montage/core/core").Montage, | |||
10 | 10 | ||
11 | var FillProperties = exports.FillProperties = Montage.create(ToolProperties, { | 11 | var FillProperties = exports.FillProperties = Montage.create(ToolProperties, { |
12 | 12 | ||
13 | _fillColorCtrl: { | ||
14 | value: null, | ||
15 | serializable: true | ||
16 | }, | ||
17 | |||
18 | _useWebGL: { | ||
19 | value: null, | ||
20 | serializable: true | ||
21 | }, | ||
22 | |||
23 | _materialsContainer: { | ||
24 | value: null, | ||
25 | serializable: true | ||
26 | }, | ||
27 | |||
28 | _fillMaterial: { | ||
29 | value: null, | ||
30 | serializable: true | ||
31 | }, | ||
32 | |||
13 | _use3D: { value: false }, | 33 | _use3D: { value: false }, |
14 | addedColorChips: { value: false }, | 34 | addedColorChips: { value: false }, |
15 | 35 | ||