diff options
author | Eric Guzman | 2012-03-12 15:33:04 -0700 |
---|---|---|
committer | Eric Guzman | 2012-03-12 15:33:04 -0700 |
commit | 7e3161153b87b891875ac65368a19aed12909fa3 (patch) | |
tree | b80f48d711a9729fc39dbbdff28c4f0620e7302d /js/tools/ShapeTool.js | |
parent | 7a28932ba8a7517bbaaabe1f5edf678416aafc9c (diff) | |
parent | 69d90467865a1384725b2301901be2180c5a841f (diff) | |
download | ninja-7e3161153b87b891875ac65368a19aed12909fa3.tar.gz |
Merge branch 'refs/heads/master' into CSSPanelUpdates
Conflicts:
js/panels/PanelContainer/PanelContainer.reel/PanelContainer.js
Diffstat (limited to 'js/tools/ShapeTool.js')
-rwxr-xr-x | js/tools/ShapeTool.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/tools/ShapeTool.js b/js/tools/ShapeTool.js index 29e9b99f..d3a36163 100755 --- a/js/tools/ShapeTool.js +++ b/js/tools/ShapeTool.js | |||
@@ -14,6 +14,8 @@ var Montage = require("montage/core/core").Montage, | |||
14 | ShapeModel = require("js/models/shape-model").ShapeModel, | 14 | ShapeModel = require("js/models/shape-model").ShapeModel, |
15 | TagTool = require("js/tools/TagTool").TagTool; | 15 | TagTool = require("js/tools/TagTool").TagTool; |
16 | 16 | ||
17 | var World = require("js/lib/drawing/world").World; | ||
18 | |||
17 | exports.ShapeTool = Montage.create(DrawingTool, { | 19 | exports.ShapeTool = Montage.create(DrawingTool, { |
18 | drawingFeedback: { value: { mode: "Draw3D", type: "rectangle" } }, | 20 | drawingFeedback: { value: { mode: "Draw3D", type: "rectangle" } }, |
19 | 21 | ||
@@ -176,7 +178,7 @@ exports.ShapeTool = Montage.create(DrawingTool, { | |||
176 | if(!world) | 178 | if(!world) |
177 | { | 179 | { |
178 | // create all the GL stuff | 180 | // create all the GL stuff |
179 | var world = new GLWorld(canvas, use3D); | 181 | var world = new World(canvas, use3D); |
180 | ElementMediator.setShapeProperty(canvas, "GLWorld", world); | 182 | ElementMediator.setShapeProperty(canvas, "GLWorld", world); |
181 | } | 183 | } |
182 | 184 | ||