The NEW Build Your Own Arcade Controls
Main => Artwork => Topic started by: darktemp on March 23, 2005, 01:26:07 am
-
I'm in the process of making my sideart and would like to draw some old sprites in 3d from a perspective like the attached image. Is there a good easy to use program to do this by just entering the sprites normally and then making the pixels into cubes and rotating them? I'm also thinking about attempting to make each side of the cubes into different sprites and blending them in.
Any ideas?
-
The effect itself is very easy to produce. I made this one in less than 5 minutes (made 1 cube and then pasted them around). I haven't come across a program that has this effect (other than raytrace-like programs).
-
Illustrator CS can do it. And rotate and move it in 3D space. Not the most intuitve approach though. ;)
-
Easily done in Dark Basic if you don't mind a little basic coding- Cooked this up in a few minutes. The resolution is 640x480 but can be set higher.
The code is simple and below.
=========================================
Sync on
Sync rate 30
Hide mouse
backdrop on
Color backdrop RGB(255,255,255)
Set ambient light 30
For x=1 to 8
Make object cube x,10
Next x
Position object 1,-10,10,20
Color object 1,RGB(50,50,150)
Position object 2,0,0,20
Color object 2,RGB(250,150,0)
Position object 3,10,10,20
Color object 3,RGB(150,150,150)
Position object 4,-20,-15,20
Color object 4,RGB(150,50,150)
Position object 5,-10,-25,20
Color object 5,RGB(50,50,150)
Position object 6,0,-25,20
Color object 6,RGB(50,250,50)
Position object 7,10,-25,20
Color object 7,RGB(250,250,0)
Position object 8,20,-15,20
Color object 8,RGB(250,50,50)
Make light 1
Position light 1, -50,30,-60
Position camera -30,20,-30
Point camera 0,0,20
Do
Sync
Loop
=================================================
This is the setup but you could easily store the position of the blocks in an 8x3x? array for movement algorhithms. Very easy. Don't know if this helps at all.
Doc
P.S. :-[ Modified after I read the link again and realizedI was in the artwork section. Doubt the resolution would be high enough for you. Could be used to make a doosy of a screensaver or interface for your cab.
-
Thanks eaviii, would have never thought of doing it that way. Very cool.
I ended up throwing it in illustrator as Pixel suggested and the results were great. I'm not sure if I'm going to use it though as it doesn't quite fit in, but I'll post them here to see what you guys think.
-
Very cool cleaner look with Illustrator-
Thinking about it, I think the DB can save/export to a .3ds model for rendering. May make a simple program at some point to take a 16x16 sprite (or so) and convert to a 3d cube form. Should be pretty easy. Don't know if anyone would find it at all useful.
Doc