mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-05 03:27:11 +02:00
Eliminated some JavaScript warnings due to missing commas
This commit is contained in:
parent
8ff47659d3
commit
a00c9893a1
2 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@
|
||||||
grab: { grabbable: true },
|
grab: { grabbable: true },
|
||||||
cloneable: true,
|
cloneable: true,
|
||||||
cloneLifetime: LIFETIME,
|
cloneLifetime: LIFETIME,
|
||||||
cloneLimit: 9999
|
cloneLimit: 9999,
|
||||||
position: Vec3.sum(MyAvatar.position, Vec3.sum(forwardOffset, forwardVector)),
|
position: Vec3.sum(MyAvatar.position, Vec3.sum(forwardOffset, forwardVector)),
|
||||||
color: newColor(),
|
color: newColor(),
|
||||||
script: SCRIPT_URL
|
script: SCRIPT_URL
|
||||||
|
|
|
@ -38,6 +38,6 @@ var hoop = Entities.addEntity({
|
||||||
grabbableKey: {
|
grabbableKey: {
|
||||||
grabbable: false
|
grabbable: false
|
||||||
}
|
}
|
||||||
})
|
}),
|
||||||
compoundShapeURL: hoopCollisionHullURL
|
compoundShapeURL: hoopCollisionHullURL
|
||||||
});
|
});
|
Loading…
Reference in a new issue