no-useless-return fix
diff --git a/.eslintrc.json b/.eslintrc.json
index 0ea1365..3dd49f4 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -69,7 +69,6 @@
         "no-prototype-builtins": "off",
         "no-restricted-properties": "off",
         "camelcase": "off",
-        "no-useless-return": "off",
         "newline-per-chained-call": "off",
         "no-useless-concat": "off",
         "no-eval": "off",
diff --git a/player/js/utils/TransformProperty.js b/player/js/utils/TransformProperty.js
index adcbf64..de24470 100644
--- a/player/js/utils/TransformProperty.js
+++ b/player/js/utils/TransformProperty.js
@@ -131,8 +131,6 @@
       if (!this.r.effectsSequence.length) {
         this.pre.rotate(-this.r.v);
         this.appliedTransformations = 4;
-      } else {
-        return;
       }
     } else if (!this.rz.effectsSequence.length && !this.ry.effectsSequence.length && !this.rx.effectsSequence.length && !this.or.effectsSequence.length) {
       this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]);