mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
fixing typos
This commit is contained in:
parent
b6ebdb5315
commit
cb715c3e55
1 changed files with 4 additions and 4 deletions
|
@ -19,8 +19,8 @@
|
||||||
var LOCAL_POSITION_Y_OFFSET = -0.125;
|
var LOCAL_POSITION_Y_OFFSET = -0.125;
|
||||||
var LOCAL_POSITION_Z_OFFSET = -0.5;
|
var LOCAL_POSITION_Z_OFFSET = -0.5;
|
||||||
// POSITIONS
|
// POSITIONS
|
||||||
var micBarLocalPosition = {x: (-(micBarDimensions.x / 2)) + LOCAL_POSITION_X_OFFSET, y: LOCAL_POSITION_Y_OFFSET, z: LOCAL_POSITION_Z_OFFSET};
|
var micBarLocalPosition = {x: (-(MIC_BAR_DIMENSIONS.x / 2)) + LOCAL_POSITION_X_OFFSET, y: LOCAL_POSITION_Y_OFFSET, z: LOCAL_POSITION_Z_OFFSET};
|
||||||
var bubbleIconLocalPosition = {x: (micBarDimensions.x * 1.2 / 2) + LOCAL_POSITION_X_OFFSET, y: ((micBarDimensions.y - bubbleIconDimensions.y) / 2 + LOCAL_POSITION_Y_OFFSET), z: LOCAL_POSITION_Z_OFFSET};
|
var bubbleIconLocalPosition = {x: (MIC_BAR_DIMENSIONS.x * 1.2 / 2) + LOCAL_POSITION_X_OFFSET, y: ((MIC_BAR_DIMENSIONS.y - BUBBLE_ICON_DIMENSIONS.y) / 2 + LOCAL_POSITION_Y_OFFSET), z: LOCAL_POSITION_Z_OFFSET};
|
||||||
if (onCreateAvatarInputsBarEntity) {
|
if (onCreateAvatarInputsBarEntity) {
|
||||||
var props = {
|
var props = {
|
||||||
type: "Web",
|
type: "Web",
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
sourceUrl: Script.resourcesPath() + "qml/hifi/audio/MicBarApplication.qml",
|
sourceUrl: Script.resourcesPath() + "qml/hifi/audio/MicBarApplication.qml",
|
||||||
// cutoff alpha for detecting transparency
|
// cutoff alpha for detecting transparency
|
||||||
alpha: 0.98,
|
alpha: 0.98,
|
||||||
dimensions: micBarDimensions,
|
dimensions: MIC_BAR_DIMENSIONS,
|
||||||
userData: {
|
userData: {
|
||||||
grabbable: false
|
grabbable: false
|
||||||
},
|
},
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
sourceUrl: Script.resourcesPath() + "qml/BubbleIcon.qml",
|
sourceUrl: Script.resourcesPath() + "qml/BubbleIcon.qml",
|
||||||
// cutoff alpha for detecting transparency
|
// cutoff alpha for detecting transparency
|
||||||
alpha: 0.98,
|
alpha: 0.98,
|
||||||
dimensions: bubbleIconDimensions,
|
dimensions: BUBBLE_ICON_DIMENSIONS,
|
||||||
userData: {
|
userData: {
|
||||||
grabbable: false
|
grabbable: false
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue