We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d25e77 commit 81e5263Copy full SHA for 81e5263
editor/js/commands/CommandFactory.js
@@ -10,7 +10,7 @@ import {SetMaterialColorCommand} from './Commands.js';
10
import {SetMaterialValueCommand} from './Commands.js';
11
import { SetPositionCommand } from './Commands.js';
12
import { SetValueCommandMuscle } from './Commands.js';
13
-
+import { SetRotationCommand } from './Commands.js';
14
function CommandFactory() {
15
16
}
@@ -48,6 +48,9 @@ CommandFactory.prototype = {
48
case 'SetPositionCommand':
49
var cmd = new SetPositionCommand(theEditor);
50
return cmd;
51
+ case 'SetRotationCommand':
52
+ var cmd = new SetRotationCommand(theEditor);
53
+ return cmd;
54
default:
55
break;
56
0 commit comments