mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 06:37:27 +02:00
Merge pull request #9973 from druiz17/tablet-misspelled-function-call
fix error from using a misspelled function
This commit is contained in:
commit
93341556ff
1 changed files with 1 additions and 1 deletions
|
@ -3601,7 +3601,7 @@ function MyController(hand) {
|
||||||
|
|
||||||
if (this.stylusTarget.entityID) {
|
if (this.stylusTarget.entityID) {
|
||||||
entityPropertiesCache.addEntity(this.stylusTarget.entityID);
|
entityPropertiesCache.addEntity(this.stylusTarget.entityID);
|
||||||
this.stylusTarget = calcualteStylusTargetFromEntity(this.stylusTip, this.stylusTarget.entityID);
|
this.stylusTarget = calculateStylusTargetFromEntity(this.stylusTip, this.stylusTarget.entityID);
|
||||||
} else if (this.stylusTarget.overlayID) {
|
} else if (this.stylusTarget.overlayID) {
|
||||||
this.stylusTarget = calculateStylusTargetFromOverlay(this.stylusTip, this.stylusTarget.overlayID);
|
this.stylusTarget = calculateStylusTargetFromOverlay(this.stylusTip, this.stylusTarget.overlayID);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue