Nickolas N. answered 01/02/22
Artsy Web Developer
Without seeing the code, itself, it sounds like you have a 2d canvas context and 3d canvas context that might need some reorganizing. A context is the 'space' that you do work in either setup: 2d or 3d.
Secondly, CORS restrictions are causing you some trouble. Some part of the code is requesting from a server with a different domain. This is likely the texture of the material. If you are running a file of javascript by file:// protocol and it makes requests to localhost you will run into this issue.
Just remember, Google.com is your friend in support.