The Daily Click ::. Forums ::. Klik Coding Help ::. how do you make a 3d person in jamagic
 

Post Reply  Post Oekaki 
 

Posted By Message

Deleted User
6th August, 2005 at 12:34:43 -

im in need of help

 

Silveraura

God's God

Registered
  08/08/2002
Points
  6747

Game of the Week WinnerKlikCast StarAlien In Training!VIP Member360 OwnerWii OwnerSonic SpeedThe Cake is a LieComputerChristmas Tree!
I am an April Fool
6th August, 2005 at 12:56:23 -

Do you actually have a 3D model of the person you want to make? I've never really used Jamagic, but if its anything like any other program I tried to learn, you cant just draw what you want in an editor like in MMF, you need to import a 3D model from somewhere else. I'd recommend 3DS Max or Maya. If this isnt what your talking about how ever, no need to listen.

 
http://www.facebook.com/truediamondgame

vortex2



Registered
  27/05/2002
Points
  1406
6th August, 2005 at 13:13:39 -

Well you need to model the guy first. I recommend using Anim8or from here: http://www.anim8or.com.

Then here is some code:

//makes a new 640X480 window with the title "3d dude"
myWin=New Window(640,480,"3d dude");
//makes a new world and passes our window to it
myWorld=New World(,myWin);
//makes a new camera and passes our world and window to it
myCam=New Camera(myWorld,myWin);
//loads a 3d object named "Smile" into the world
myWorld.Load("Smile");
//Gets the last object loaded into the world and store it in the variable mySmile.
//Now you can use mySmile as an object to do whatever you want with it .
mySmile=myWorld.GetObject(myWorld.GetNObjects()-1);
//Allow us to move the camera with the arrow keys
myCam.Walk();
//loop to keep the program going.
While(1);


Then I would go ask this question at: http://www.clickteam.com/CTforum/wwwthreads.php3?Cat= You are more likely to get help there.

Really though, Jamagic's 3d side sucks... I don't recommend using it.

 
A bit of insanity with every bite!

Silveraura

God's God

Registered
  08/08/2002
Points
  6747

Game of the Week WinnerKlikCast StarAlien In Training!VIP Member360 OwnerWii OwnerSonic SpeedThe Cake is a LieComputerChristmas Tree!
I am an April Fool
6th August, 2005 at 13:38:51 -

Anim8or is only good if your looking for a free program that can do 25% of what the big guys do... if you can, use 3D Studio Max 7, maybe an earlyer version if the price is a little high.

Image Edited by the Author.

 
http://www.facebook.com/truediamondgame

vortex2



Registered
  27/05/2002
Points
  1406
6th August, 2005 at 19:56:02 -

I recommended it becuase it works well in Jamagic... Jamagic has some bugs with it's import code so finding a program that actually makes working models for Jamagic is important .

 
A bit of insanity with every bite!
   

Post Reply



 



Advertisement

Worth A Click