Questions tagged [model-loader]
The model-loader tag has no summary.
21 questions
0
votes
1
answer
191
views
I can't figure out whats wrong with my .obj file reader
I'm just loading a simple textured cube but it always has missing bits or warped textures. This is for directx 11 rendering by the way. Updated with more information. I think my problem is with ...
0
votes
1
answer
144
views
OpenGL object load in reverse
I am trying to load a model and it is loading it in reverse. When I am trying to rotate it 180 degrees it changes the lightning as well.
I am not sure what I need to do to change the position that eh ...
0
votes
1
answer
280
views
frustum culling and exporting a big scene model
Let's assume that I created in Blender a race track with landscape. I can export it to single wavefront obj file and then load in my graphics engine using assimp but it doesn't allow to use frustum ...
0
votes
2
answers
324
views
OpenGL ES model loader is slow?
I'm trying to load a 3D model in OpenGL ES, and I managed to find a project on "sourceForge" that can do this job.
When I downloaded it and played the app, it took 50 second to load a small object (...
1
vote
0
answers
67
views
How to load models with possibility to change textures in Three.js
I'm working on a game in Three.js where I have a few variations of the same model in blender.
What I want to achieve is that I'll load the model once with all the material settings, but then I'll ...
1
vote
1
answer
263
views
Problem with loading models with different shaders
I am lerning opengl programming from http: //learnopengl.com .And i can load any model which i want.But if i want to load two models with different shaders,a problem occurs.
For example:
First i draw ...
0
votes
1
answer
211
views
Trying to abstract OpenGL model loading but can't draw triangle... (C++)
Recently, I have been trying to learn modern OpenGL and I think I've grasped it (or the basics, at the very least.) but I have been having issues trying to make a triangle display on the screen but it ...
2
votes
2
answers
2k
views
ASSIMP OpenGL collada and Skeletal Animation
first of all i would like to say that i read everything out there and still did not figure it out quite yet.
In my project i need to implement a skinning technique, but before going there i need to ...
1
vote
0
answers
978
views
Streaming 3d model --> unity android
I want to include a feature in my game that allows me to host raw 3d models (.fbx/ .obj/ etc., not AssetBundles) on a server.
The game should download these files, save them to the device and load ...
4
votes
1
answer
790
views
How to load multiple 3D models dynamically xna
I want to load multiple 3D models .fbx at the same time in my map display.
I can load First Model but when I use ContentBuilder to Load another Model, I Got Error ...
1
vote
1
answer
112
views
add random walls with an array in 3D xna 4
I'm trying to add walls to my 3D game. I created a wall entity and added model array
...
1
vote
1
answer
3k
views
C++ DirectX FBX SDK Importer Weird Mesh Problem
I'm having a problem understanding how to render the vertex data in fbx model into directx.
This is my two functions and I've already triangulated all the mesh nodes.
...
1
vote
1
answer
920
views
Errors when loading Assimp meshes
I am experiencing some oddities when loading meshes in Assimp. Some models render perfectly, while others are complete jumbles of triangles.
Some Example Images:
Teapot Correct -
Teapot Actual
...
2
votes
1
answer
1k
views
Efficient way of loading wavefront models in openGL game
In my game, a RTS game, the units are all wavefront obj. all their animation frames are each seperate wavefront obj file. ie. without any skeletal animation; fully rigid models. So when many units are ...
3
votes
1
answer
1k
views
Why do some .obj files have no newlines?
I'm working on a game engine and just started with mesh loading. I started with the format .obj. I ran into this problem:
The guide I'm following gave me a couple ...