mirror of
https://github.com/overte-org/overte.git
synced 2025-08-16 08:11:59 +02:00
[Case 6491] makeStretchTool: Fix z undefined issue (details below).
z:z appears to have been a typo, as there's no var z. Should likely be z:1. Changes Committed: modified: scripts/system/libraries/entitySelectionTool.js
This commit is contained in:
parent
ff051db79a
commit
6571aef997
1 changed files with 1 additions and 1 deletions
|
@ -2833,7 +2833,7 @@ SelectionDisplay = (function() {
|
|||
planeNormal = {
|
||||
x: 0,
|
||||
y: 0,
|
||||
z: z
|
||||
z: 1
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue