mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 08:36:26 +02:00
Merge remote-tracking branch 'upstream/master' into android_goto_splash
This commit is contained in:
commit
176038aa53
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
var qml = Script.resourcesPath() + '/qml/AudioScope.qml';
|
var qml = Script.resourcesPath() + '/qml/AudioScopeUI.qml';
|
||||||
var window = new OverlayWindow({
|
var window = new OverlayWindow({
|
||||||
title: 'Audio Scope',
|
title: 'Audio Scope',
|
||||||
source: qml,
|
source: qml,
|
||||||
|
@ -14,4 +14,4 @@ window.closed.connect(function () {
|
||||||
AudioScope.setServerEcho(false);
|
AudioScope.setServerEcho(false);
|
||||||
AudioScope.selectAudioScopeFiveFrames();
|
AudioScope.selectAudioScopeFiveFrames();
|
||||||
Script.stop();
|
Script.stop();
|
||||||
});
|
});
|
||||||
|
|
|
@ -475,7 +475,7 @@ Script.include("/~/system/libraries/Xform.js");
|
||||||
entityID = targetEntity.id;
|
entityID = targetEntity.id;
|
||||||
targetProps = targetEntity.props;
|
targetProps = targetEntity.props;
|
||||||
|
|
||||||
if (entityIsGrabbable(targetProps)) {
|
if (entityIsGrabbable(targetProps) || entityIsGrabbable(this.targetObject.entityProps)) {
|
||||||
if (!entityIsDistanceGrabbable(targetProps)) {
|
if (!entityIsDistanceGrabbable(targetProps)) {
|
||||||
this.targetObject.makeDynamic();
|
this.targetObject.makeDynamic();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue