Knightro
Knightro
Hi csyeqing, I have added a couple of new import mtl cases to fix this issue. Also you will only be able to use either a normal map or a...
Hi @Lanlanxiao, I have added stl loader, but I am still working on other updates before I make the pull request. Please go to https://github.com/Knightro63/three_dart_jsm/blob/main/lib/three_dart_jsm/loaders/stl_loader.dart to see the conversion. Hope...
Hi @lemba3, I will need a little more information to be able to help with this. Is there an example you are using which is giving this error? Also I...
Hi @DanteAlucard98, Face tracing is possible with a couple of repos on pub.dev, but it is not directly in this package since this package is only for 3d viewing and...
Hi @alazarLaz, This is the same issue as https://github.com/wasabia/three_dart/issues/133. if tl;dr there is 2 options 1) Use the older version of the repo e.g.(three_dart: 0.0.14 and three_dart_jsm:0.0.9) or 2) Use...
Hi @ShakeelKhalid1913, It looks like flutter is trying to get `three_dart_jsm: git` not ``` three_dart_jsm: git: url: https://github.com/Knightro63/three_dart_jsm.git ``` Yaml files require 2 or 4 spaces as indentations to get...
Hi @ShakeelKhalid1913, GLTF files have a lot of data in them and parsing them into there respective parts takes time. It could be optimized by not using dart and doing...
Hi @ShakeelKhalid1913, I noticed there is a null value in the loader function. This will keep the function from loading. Can you change `var result = await loader.loadAsync('animate7.gltf',null);` to `var...
Hi @ShakeelKhalid1913, For this file type animations are not the problem since they are json based movement information. So, yes having all the animations in one file should be fine....
Hi @ShakeelKhalid1913, You are on the right track for your animations to play. Looks like you are missing a few things. From my understanding: 1)Play one animation not on repeat...