mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 04:44:08 +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
interface/resources/qml
scripts
|
@ -1,4 +1,4 @@
|
|||
var qml = Script.resourcesPath() + '/qml/AudioScope.qml';
|
||||
var qml = Script.resourcesPath() + '/qml/AudioScopeUI.qml';
|
||||
var window = new OverlayWindow({
|
||||
title: 'Audio Scope',
|
||||
source: qml,
|
||||
|
@ -14,4 +14,4 @@ window.closed.connect(function () {
|
|||
AudioScope.setServerEcho(false);
|
||||
AudioScope.selectAudioScopeFiveFrames();
|
||||
Script.stop();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -475,7 +475,7 @@ Script.include("/~/system/libraries/Xform.js");
|
|||
entityID = targetEntity.id;
|
||||
targetProps = targetEntity.props;
|
||||
|
||||
if (entityIsGrabbable(targetProps)) {
|
||||
if (entityIsGrabbable(targetProps) || entityIsGrabbable(this.targetObject.entityProps)) {
|
||||
if (!entityIsDistanceGrabbable(targetProps)) {
|
||||
this.targetObject.makeDynamic();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue