@@ -325,6 +325,15 @@
texture.repeat.y = values[ 1 ];
}
+
+ if ( 'Translation' in textureNode ) {
+ const values = textureNode.Translation.value;
+ texture.offset.x = values[ 0 ];
+ texture.offset.y = values[ 1 ];
+ }
return texture;
@@ -389,6 +389,15 @@ class FBXTreeParser {