mirror of
https://github.com/overte-org/overte.git
synced 2025-07-29 19:50:32 +02:00
fixed more syntax errors
This commit is contained in:
parent
36f7bba87e
commit
a6df6c53f1
2 changed files with 1 additions and 4 deletions
|
@ -36,7 +36,7 @@
|
||||||
});
|
});
|
||||||
Script.setTimeout(function() {
|
Script.setTimeout(function() {
|
||||||
_this.isMeowing = false;
|
_this.isMeowing = false;
|
||||||
}, this.soundClipTime)
|
}, this.soundClipTime);
|
||||||
},
|
},
|
||||||
|
|
||||||
preload: function(entityID) {
|
preload: function(entityID) {
|
||||||
|
|
|
@ -34,8 +34,6 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
startNearGrab: function() {
|
startNearGrab: function() {
|
||||||
// if (this.isGrabbed === false) {
|
|
||||||
print("START GRAB")
|
|
||||||
Entities.editEntity(this.entityID, {
|
Entities.editEntity(this.entityID, {
|
||||||
animationURL: "https://hifi-public.s3.amazonaws.com/models/Bboys/zombie_scream.fbx",
|
animationURL: "https://hifi-public.s3.amazonaws.com/models/Bboys/zombie_scream.fbx",
|
||||||
animationFrameIndex: 0
|
animationFrameIndex: 0
|
||||||
|
@ -67,7 +65,6 @@
|
||||||
if (this.isGrabbed === true && this.hand === this.initialHand) {
|
if (this.isGrabbed === true && this.hand === this.initialHand) {
|
||||||
this.audioInjector.stop();
|
this.audioInjector.stop();
|
||||||
Entities.editEntity(this.entityID, {
|
Entities.editEntity(this.entityID, {
|
||||||
// animationSettings: this.stopAnimationSetting,
|
|
||||||
animationFrameIndex: 0
|
animationFrameIndex: 0
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue