hi! i prepare two videos, first is from my project: take look when red screen appears, when 3d object is visible on screen
second video is downloaded from your examples, only few cause error (set time scale of video to 2xI hope this help you, maybe older versions maybe help solve problem, can you add to download few previous versions? i will check them and let you know. Kind regards!Viewing post in Construct 3 3DObject Plugin comments
Ok, I took a look at this. These examples work on my set up and after tracing some stuff down, it looks like you are running the editor using webgl1 and not webgl2 or webGPU. The image textures trigger the issue, because they are non-power of 2. and tiled/repeat. WebGL1 does not support non power of 2 textures with all modes (e.g. tiled / repeat mode).
My suggestion is to work using webGL2 in editor and runtime. If that is not possible, you need to make all your textures power of two, where ever these issues show up.