Scrolling Game Development Kit Forum
SGDK Version 2 => General Discussion => Topic started by: boogerlad on 2010-06-05, 09:24:57 AM
-
Hey, I'm a 3d animator/rigger, and can animated 3d models a lot better than making sprites. I'm not looking to create a game that is fps style/3d. I'm just looking to replace sprites with 3d models, and have the game still render in a 2d sidescrolling type way, kinda like new super mario bros wii. It isn't possible yet, but would that add a lot more complexity with the code? I'm working with dae format, with bones, textures and the body.
Thanks!
-
Perhaps you should render the 3d models into 2d sprites using whatever 3d software you're using? It would be much easier than rendering them in real time using sgdk2; I would imagine there'd be massive modifications you'd have to make to it. Wait for someone who knows a bit more about it than me to confirm though.
-
I think rendering them in real time would be more efficient than having 30 frames of animation for each sprite.
-
I wouldn't think so.
-
i would bet that in order to add any 3-d effects to SGDK, a complete rebuild of the engine would need to occur.
Although, this would be a great idea for SGDK3, right?
-
well, performance wise, it would be better to have sprites, but when you have close to 1000 sprites, file size becomes and issue, where as a model and the animations are under 5mb.
-
a general .png tileset only takes about 60KB for a 32x32 256 tiles sheet. for a 128x128 256 tileset(which 256 is a lot for a sprite), that's only about 2.5MB
The animations usually take only about 20 lines of code, which is only about 30 bytes each.
taking this into account, 1000 2d 128x128 tilesets would take up about 2,500MB. 1000 3d models and animation data would take up about 5,000MB. plus, rendering 3d graphics takes up a lot of memory to even process it.
-
that's the thing, you need multiple sprites for multiple frame of animation, but one model/animation set replaces all of it. Besides, 3d looks better imo.
-
SGDK2 is build on OpenTK.
OpenTK is a wrapper around OpenGL.
OpenGL is a general purpose graphics library that supports 3D and 2D.
The SGDK2 framework does not currently use and of OpenTK/OpenGL's 3D features, but if you're familiar with OpenGL, you may be able to add some features to the SGDK2 framework relatively easy. You may be able to design a custom sprite type that appears 2D in the designer, but 3D at runtime without changing SGDK2 source code (only extending the project's source code).