Tagged Questions
8
votes
3answers
1k views
Animation in OpenGL using 3D Models
I have created a model in Blender. Now i want to read that 3D model in my c++ program. I figured that a model can be exported to various file formats e.g. .obj, .3ds or COLLADA and then can be read in ...
7
votes
1answer
1k views
Which c/c++ model animation library for OpenGL
I'm fairly new to game development, played around with xna before and just learning OpenGL & c now and I'm interested to know which c/c++ based model animation libraries are out there and which ...
6
votes
1answer
509 views
Do I really have to write my own optimized model format?
So I'm a brand new noob to the world of game dev and I'm starting off by trying to write my own game using C++ and openGL. I'm getting into loading models etc and while searching around for "the best ...
5
votes
2answers
3k views
Most common 3D model format for opengl
I'm a novice that is starting to play with OpenGL ES on Android devices. To practice OpenGL I wanted to create a small game engine and so I was wondering what the best 3D model file format would be.
...
5
votes
4answers
1k views
Can't understand these UV texture coordinates (range is NOT 0.0 to 1.0)
Hey, hello guys, I am trying to draw a simple 3D object generated by Google SketchUp 8 Pro onto my WebGL app, the model is a simple cylinder.
I opened the exported file and copied the vertices ...
4
votes
1answer
586 views
Middleware to Bring 3D Meshes into OpenGL ES 2.0
Say I develop a game for mobile platform running OpenGL ES 2.0. I have done 2D part, and now I wish to import some 3D objects.
The imported 3D objects must contain the following:
Vertices positions
...
4
votes
1answer
490 views
Problem with Assimp 3D model loader
In my game I have model loading functions for Assimp model loading library. I can load the model and render it, but the model displays incorrectly. The models load in as if they were using a seperate ...
4
votes
1answer
817 views
opengl lighting with textures
I'm using OpenTK and working in C#, if that matters. I'm trying to get lighting effects on a textured object. I'm using obj and mtl files to define them. No matter what I try my object is either ...
3
votes
3answers
2k views
OpenGL and 3ds model loading: Path of least resistance?
Hey guys, im working on a final class project for a graphics class, and me and a teammate are making a simple 3d tower defense game.
We're currently planning on using 3ds models and drawing them ...
3
votes
1answer
377 views
Problem with my model loader?
I'm trying to load MD2 models (stolen from Cube) and my loader seems to be loading the models fine, but I can't say the same for the drawing of the model. Here's my code:
typedef float vec3_t[3];
...
2
votes
2answers
701 views
Issues glVertexAttribPointer last 2 parameters?
Introduction
Hello I will start out by explaining my setup, showing samples as I go along explaining the situation.
I'm using these tools:
OpenGL 3.3
GLSL 330
C++
Problem
The problem ...
1
vote
1answer
275 views
Child transforms problem when loading 3DS models using assimp
I'm trying to load a textured 3d model into my scene using assimp model loader.
The problem is that child meshes are not situated correctly (they don't have the correct transformations).
In brief: ...
0
votes
2answers
281 views
How do I create the playing field for my game?
I want to create a game with playfield as shown in the video in OpenGL
www.youtube.com/user/stanfordcs248
I have fair knowledge of OpenGL and I know this playfield can be rendered using several ...
0
votes
2answers
382 views
I have created character human in blender. How to use it in Java/Android
Title says it all pretty much. I can't find anything online which explains it in details. I have created a character model in Blender and I want to use it in Android app. I want to make it move. ...
0
votes
1answer
90 views
Problems in exporting terrain from autodesk 3ds
i am trying to make small counter strike sort of game and for the terrain part i have exported the terrain in 3ds format from Autodesk 3ds-max and imported the same in opengl using lib3ds. Its working ...