mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:43:50 +02:00
fixing adjusting equipped entities
This commit is contained in:
parent
8eb8cb0994
commit
db374b8c6d
1 changed files with 2 additions and 1 deletions
|
@ -81,7 +81,8 @@ Script.include("/~/system/libraries/cloneEntityUtils.js");
|
|||
};
|
||||
|
||||
this.otherHandIsParent = function(props) {
|
||||
return this.getOtherModule().thisHandIsParent(props);
|
||||
var otherModule = this.getOtherModule();
|
||||
return (otherModule.thisHandIsParent(props) && otherModule.grabbing);
|
||||
};
|
||||
|
||||
this.startNearParentingGrabEntity = function (controllerData, targetProps) {
|
||||
|
|
Loading…
Reference in a new issue